My app started crashing a lot on 11.24. The crash strack is : ----- java.lang.UnsatisfiedLinkError dlopen failed: library "/data/app/~~L0rBNBTUkLv3RqyFXVtUjw==/my.app-oAKK83KxEzJFI0LL4Q9qBA==/split_config.arm64_v8a.apk!/lib/arm64-v8a/libmyApp.so" not found at java.lang.Runtime.loadLibrary0(Runtime.java:1087) at java.lang.Runtime.loadLibrary0(Runtime.java:1008) at java.lang.System.loadLibrary(System.java:1664) at my.app.mv.Configuration.<clinit>(SourceFile:9) at my.app.mv.Configuration.getInstance(SourceFile:1) -----
At first I thought it was my fault, but when I continued to investigate, I found the following questions : 1. A large number of crashes occur when a version change occurs, but the version number remains the same. Under normal situations, the user's app upgrade is from version 1 to version 2. But this crash I found the user's app upgrade is from 9707 to 9707. Crash Version : 9707; previous_version(Key) :9707 2. I found that the path that trying to load 'myApp.so' no longer exists, split_config.arm64_v8a.apk is on another new path. the path deleted : /data/app/~~kUV3h_akJP6RupVwkVaxcQ==/my.app-nGCUWzc8j7uXPsZJq4OQtA==/ the new app path : /data/app/~~e9Zlw-P5TmtCCrATS6qWzA==/my.app-OYv_E73D2bANqixFtPB_HA==/ ------ sodino@sodino Desktop % cat crash.log| grep -e split_config.arm64_v8a.apk -e "tail end of FD List" 12-01 19:04:23.917 24210 24210 E Pug-Exc : java.lang.UnsatisfiedLinkError: dlopen failed: library "/data/app/~~kUV3h_akJP6RupVwkVaxcQ==/my.app-nGCUWzc8j7uXPsZJq4OQtA==/split_config.arm64_v8a.apk!/lib/arm64-v8a/libmyApp.so" not found --------- tail end of FD List fd 82: /data/app/~~kUV3h_akJP6RupVwkVaxcQ==/my.app-nGCUWzc8j7uXPsZJq4OQtA==/split_config.arm64_v8a.apk (deleted) fd 89: /data/app/~~kUV3h_akJP6RupVwkVaxcQ==/my.app-nGCUWzc8j7uXPsZJq4OQtA==/split_config.arm64_v8a.apk (deleted) fd 497: /data/app/~~e9Zlw-P5TmtCCrATS6qWzA==/my.app-OYv_E73D2bANqixFtPB_HA==/split_config.arm64_v8a.apk sodino@sodino Desktop % ------ 3. Based on the above findings, I doubt it is may cause by some reason of 'Google Play Store'. I went to find the changelog for the Google Play Store. I found a new feature of 'Google Play Store' has been working on 24/11/2022. The time of the update coincides with when this crash started. ------ https://support.google.com/product-documentation/answer/11412553?hl=en#zippy=%2Cnovember - [Phone] Archive apps when you need more storage space while preserving your data.[10] [10] Available through Google Play Store v33.4 updated on 11/24/2022 ------- Is the two related? Some help , thanks! -- You received this message because you are subscribed to the Google Groups "Android Discuss" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/android-discuss/651bf64a-2239-4887-b852-07f82cd51f9en%40googlegroups.com.
