Merge "16k: Sign the APKs to support 4k/16k page sizes" into main am: 4d136f5265

Original change: https://android-review.googlesource.com/c/platform/build/+/2786950

Change-Id: Id74b68c856dcd101522d26bb32f7fd4578ef8f18
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
This commit is contained in:
Juan Yescas 2023-10-20 04:19:33 +00:00 committed by Automerger Merge Worker
commit 103d459c3b

View file

@ -687,7 +687,7 @@ class SignApk {
if (entryName.endsWith(".so")) {
// Align .so contents to memory page boundary to enable memory-mapped
// execution.
return 4096;
return 16384;
} else {
return defaultAlignment;
}