reya
· 5w
hmm, somehow I still got the warning. maybe it don't work on KMP but only Android?
I've checked the `libnostr_sdk_ffi.so` libraries used in the KMP package and they seem to be correctly aligned:
```text
LOAD off 0x0000000000000000 vaddr 0x0000000000000000 paddr 0x0000000000000000 align 2**14
LOAD off 0x000000000032f3c0 vaddr 0x00000000003333c0 paddr 0x00000000003333c0 align 2**14
```
Have you tried verifying whether the APK itself is aligned? From my understanding, the ELF files can be correctly aligned but still be packaged incorrectly inside the APK:
```bash
$ANDROID_HOME/build-tools/<version>/zipalign -c -P 16 -v 4 app-release.apk
```