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.<application>
tag so that the manifest merger picks your app's backup rules instead: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:READ_PHONE_STATE
permission gets revoked or can no longer be acquired at runtime.maxSdkVersion
attribute. To remove this attribute, add the tools:remove="android:maxSdkVersion"
attribute to the permission in your app's manifest: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.