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

This commit is contained in:
Juan Yescas 2023-10-20 04:09:43 +00:00 committed by Gerrit Code Review
commit 4d136f5265

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;
}