Configuration Dependencies
Open the app/src/main/AndroidManifest.xml
in the Android folder of your application and make sure below attributes are included
It is recommended to disallow users to backup an app if it contains sensitive data. Having access to backup files (i.e. when
android:allowBackup="true"
), it is possible to modify/read the content of an app even on a non-rooted device.
The
tools:replace="android:label"
typically used when you want to replace or override a specific attribute value defined in a library's manifest with a value from your own manifest.
if you face the below error during installing the Android App.
upgrade Sdk versions as 34 or higher on your app/build.gradle
file in your Android folder.