App Bundle, split APKs and LinkageError
Troubleshoot or avoid crashes when using ObjectBox db and Android App Bundle or due to buggy devices. Google-certified devices prevent this crash.
Your app might observe crashes due to UnsatisfiedLinkError
or (since ObjectBox 2.3.4) LinkageError
on some devices. This has mainly two reasons:
If your app uses the App Bundle format, the legacy split APK feature or Multidex the native library can't be found.
Or if your app's minimum SDK level is below API 23 (Marshmallow), there are known bugs in Android's native library loading code.
Let us know if the below suggestions do not resolve your crashes in GitHub issue 605.
App Bundle and split APKs
When using an App Bundle or split APKs Google Play only delivers the split APKs required for each user's device configuration, including its architecture (ABI). If users bypass Google Play to install your app ("sideloading") they might not install all of the required split APKs. If the split APK containing the ObjectBox native library required for the device ABI is missing, your app will crash with LinkageError
when building BoxStore.
Using the Play Core library to check for missing splits
Update August 2020: Google-certified devices (those running Google Play Services) or those running Android 10 (API level 29) or higher prevent users from sideloading split APKs, preventing this crash. Adding the below check is no longer necessary for these devices.
Add the Play Core library to the dependencies block:
In the Application
class add the missing split APKs check before calling super.onCreate()
:
If a broken installation is detected, users will see a message and Reinstall button asking them to re-install the app from Google Play.
See how we updated our example app to use the Play Core library detection.
If the Play Core library should not be used, there are two alternatives:
Alternative: Catch exception and inform users
You can guard the MyObjectBox build call and for example display an activity with an info message (e.g. direct users to reinstall the app from Google Play, send you an error report, ...):
As an example see how we added this to our Android app example.
Alternative: turn off splitting by ABI
The simplest solution is to always include native libraries for all supported ABIs. However, this will increase the download size of your app for all users.
Source: Android Developers
Buggy devices (API 22 or lower)
On some devices and if your minimum SDK is below API 23 (Android 6.0 Marshmallow), loading the native library may fail with LinkageError
due to known bugs in Android's native library loading code. To counter this ObjectBox includes support for the ReLinker tool which will try to extract the native library manually if loading it normally fails.
To enable this, just add ReLinker to your dependencies:
ObjectBox is calling ReLinker via reflection. If you are using ProGuard or Multidex, make sure to add keep rules so that ReLinker code is not stripped from the final app or is not in the primary dex file.
For ProGuard add this line:
For Multidex add a multiDexKeepProguard file to your build file:
And in the multidex-config.pro file add the same rule as above:
Multidex supports two file formats to keep files. We are using the ProGuard format (multiDexKeepProguard property). You can also use the multiDexKeepFile property, but make sure to adapt the rule above to that format.
Enable ReLinker debug log
To enable debug logs for ReLinker you can pass a custom ReLinkerInstance
when building BoxStore
:
Last updated