Closed YMonnier closed 1 month ago
Hello @YMonnier,
We've done some research regarding similar issues in the past, and we've concluded that this error is caused by the Android architecture design. Google Play nowadays works with the Android App Bundles (AAB), a specific format that includes all your app's compiled code and resources. When someone downloads the app from the Google Play Store, only device-specific code and resources are downloaded.
If an app is downloaded from the Google Play Store on one device and then extracted and transferred to another device with a different ABI, the missing platform-specific resources and libraries may cause crashes. The same issue may be present in some alternative stores, which usually use automatic scraping tools to download apps from the Google Play Store (mirror stores).
In your stack trace, the app is trying to load libsecurity.so file and it's looking into the x86 directory, so this stacktrace is related to some emulator. Some emulators may not come with the Google services and Google Play Store, and the APK downloaded from another source may not contain platform-specific resources for a given device.
If you are not seeing a large number of these issues, it may not be something that requires immediate action. If you have any additional questions, please let us know.
Best regards, Ondřej from Talsec
Describe the bug Since integrating the freeRASP 9.6.0-NO_DB library, we have encountered several crashes associated with the native library not initializing freeRASP properly:
dlopen failed: library "libsecurity.so" not found
Fatal Exception: java.lang.UnsatisfiedLinkError dalvik.system.PathClassLoader[DexPathList[[zip file "/data/app/com.myapp--ne9fyBui933CEnery3gcg==/base.apk"],nativeLibraryDirectories=[/data/app/com.myapp--ne9fyBui933CEnery3gcg==/lib/x86, /system/lib, /vendor/lib]]] couldn't find "libsecurity.so"