Android
This document refers to deprecated parts of the platform and has been left intact to help customers with legacy integrations. In order to access the latest platform features and documentation, please go to https://docs.sentiance.com.
java.lang.RuntimeException: Exception while creating class X
Problem: This error is likely due to the app using a different version of the play-services-* libraries than the Sentiance SDK.
Solution: Exclude the play-services-location library used by Sentiance and include a newer version.
Note: Make sure to include the explicit play-services-location dependency in the app module to avoid potential problems with various versions of the Android gradle plugin, e.g. in a react-native project.
Version conflict or mismatch error
All com.android.support libraries must use the exact same version specification...
Problem: Our SDK has a dependency on the Google Play location services library, which itself has dependencies on various other support libraries. When your application has a dependency on a different version of a play services, support, or location library, it may result in version conflict.
Solution: Exclude the conflicting library from our SDK and include a higher version separately.
Manifest merger failed: Attribute fullBackupContent
Problem: If you have specified custom backup rules in your application's manifest using the android:fullBackupContent
attribute, then you might run into an exception during the build. This is because our SDK sets its own rules in the library manifest, which causes the manifest merger to complain about the conflict.
Solution: Add the following attribute to your app's <application>
tag so that the manifest merger picks your app's backup rules instead:
Then, add the following SDK backup rules to your backup rules XML file (location in the res/xml directory):
Build failure or runtime exception when using AndroidX
Build-time Exception
Error while merging dex archives
Error: Program type already present: android.support.v4.app.INotificationSideChannel
Runtime Exception
NoClassDefFoundError: Failed resolution of: Landroid/support/v4/util/ArrayMap
Problem: When using AndroidX support libraries or a Google Play Services library which depends on AndroidX libraries, you might run into the above build-time or runtime exception.
Solution: The Sentiance SDK depends on several com.android.support
libraries. Therefore, you must enable Jetifier to migrate the SDK's support dependencies to the AndroidX equivalent ones. To do so, add the following lines to your project's gradle.properties file:
Permission revoked when adding the Sentiance SDK
Problem: When adding the Sentiance SDK to an app, the READ_PHONE_STATE
permission gets revoked or can no longer be acquired at runtime.
Solution: The Sentiance SDK adds this permission to the app and specifies the maxSdkVersion
attribute. To remove this attribute, add the tools:remove="android:maxSdkVersion"
attribute to the permission in your app's manifest:
Exclude native libraries for unsupported architectures
Problem: When adding the Sentiance SDK to your app, your final apk may include native libraries for architectures you do not intend to support, unnecessarily increasing the size of your app.
This problem does not affect you if you are publishing your app as an Android App Bundle (aab). Google Play takes care of stripping unnecessary binaries from your final apk.
Solution: You can restrict the architectures that you want to support by adding abiFilters
to your build config. Below is an example of how to restrict it to armeabi-v7a
and arm64-v8a
only, in your release builds.
Last updated