根据安全性要求,我需要阻止我的应用程序备份。首先,我的清单文件中有android:allowBackup="true"
,我认为android:allowBackup="false"
应该阻止备份。
问题是“它能解决我的问题吗?(android:allowBackup="false"
)”。如果没有,我应该如何解决?
我正在尝试检查我的应用程序的备份。
这些是我尝试过的命令:
echo 'export PATH=$PATH:/Users/nur/Library/Android/sdk/platform-tools/' >> ~/.bash_profile
source ~/.bash_profile
adb devices
adb backup -apk -nosystem com.kz.myapp
在两种情况下,当backup = true或false时,我得到:
这是我的清单文件
<application
android:name=".App"
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:required="true"
android:roundIcon="@mipmap/ic_launcher"
android:supportsRtl="true"
android:theme="@style/AppTheme"
android:usesCleartextTraffic="true"
tools:ignore="GoogleAppIndexingWarning">
所以我的问题是:
我如何理解自己解决了问题?