- The native library added in 8.17.0 for Turbo Module performance tracking is built from source with the app's NDK. On NDK r27 and earlier the linker defaults to 4 KB segment alignment, leaving this library misaligned while every other bundled `.so` is already 16 KB aligned. This tripped Android's 16 KB page size compatibility check (and Google Play's 16 KB requirement) for New Architecture apps, even when `enableTurboModuleTracking` was not enabled. The CMake target now passes `-Wl,-z,max-page-size=16384` (a no-op on NDK r28+).
0 commit comments