Android
React Native
In your
build.gradle
add Authenteq maven repository to repositories list:repositories {
maven {
url 'https://repo.app.authenteq.com/repository/maven-hosted'
}
}
▸ Set min Android SDK to level 21 (Android 5.0) in
build.gradle
minSdkVersion 21
▸ Adjust backup settings in
AndroidManifest.xml
by changing the allowBackup
attribute to true
android:allowBackup="true"
or disable it by adding this
attribute
in application tagtools:replace="android:allowBackup"
this also requires you to add the following attribute in
manifest
tagxmlns:tools="http://schemas.android.com/tools"
Last modified 2yr ago