Now, Google Play forced to use App Bundle, and Android apps are installed as Split Apks from Google Play Store.
And Crashes of Android Apps may occur depending on whether parts of Split Apks are installed such as
DPI Split Apks (ex: config.xhdpi)
If DPI Split apk are not installed, app can be crashed with android.view.InflateException by missing drawables.
ABI Split Apks (ex: config.arm64-v8a)
If ABI Split apk are not installed, app can be crashed with java.lang.UnsatisfiedLinkError by missing so files.
These crashes occurs because all split apks are not installed from Google Play or the manufacturer's store, and are issues in the distribution process.
And if Sentry Android SDK provides these information, project owner can identify these issues are from distribution process or app's logical problem.
Solution Brainstorm
Whether installed apk is split apk
Need to check com.android.vending.splits.required from metadata of package info
Problem Statement
Now, Google Play forced to use App Bundle, and Android apps are installed as
Split Apks
from Google Play Store. And Crashes of Android Apps may occur depending on whether parts of Split Apks are installed such asandroid.view.InflateException
by missing drawables.java.lang.UnsatisfiedLinkError
by missing so files.These crashes occurs because all
split apks
are not installed from Google Play or the manufacturer's store, and are issues in the distribution process. And if Sentry Android SDK provides these information, project owner can identify these issues are from distribution process or app's logical problem.Solution Brainstorm
com.android.vending.splits.required
from metadata of package infosplitNames
from PackageInfo