GitHub user breautek edited a comment on the discussion: Play Store Rejection When Creating a New App - Incompatibility with 16KB Library (Android 15)
If they include any `.so` files. The `.so` files could be packaged inside `.aar` files, so if they include `.aar` files, you'll have to unpack them (they are simply zip files). The easiest way to determine if your app uses native binaries is to build your apk and then unzip the apk file, and look to see if you have any jniLibs (which are the `.so` files). If so it means your app is pulling in a dependency that brings in native binaries. It's a bit harder to track down exactly which dependency that is including the native binaries. Cordova framework and any officially maintained plugins does not use native binaries. But some common plugins that does is google maps and sqlite plugins. GitHub link: https://github.com/apache/cordova/discussions/554#discussioncomment-14287828 ---- This is an automatically sent email for issues@cordova.apache.org. To unsubscribe, please send an email to: issues-unsubscr...@cordova.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org For additional commands, e-mail: issues-h...@cordova.apache.org