adb:备份无法创建文件“ backup.ab”:没有此类文件或目录

时间:2019-07-01 07:02:27

标签: android adb android-manifest

根据安全性要求,我需要阻止我的应用程序备份。首先,我的清单文件中有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时,我得到:

enter image description here enter image description here

这是我的清单文件

<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">

所以我的问题是:

  

我如何理解自己解决了问题?

0 个答案:

没有答案