Hello,
I'm using version 1.7.1 of your antifake library, and I noticed this warning during the AAB build process:
The native library arm64-v8a/libemulator_check.so (from io.github.happylishang:antifake:1.7.1) is not 16 KB aligned
This causes problems with Android App Bundles, as Google Play requires native .so files to be 16 KB aligned.
How to reproduce:
- Add this dependency:
implementation("io.github.happylishang:antifake:1.7.1")
- Build your app as an
.aab
- See the warning in build output or Play Console
Suggested fix:
Please rebuild the .so files using proper linker or NDK settings to align sections on 16 KB boundaries. Let me know if you'd like help reproducing the issue.
Thanks for maintaining this useful library!