如何防止自动备份安卓应用程序?

我在某些设备上(Android 7的Nexus 5x)上遇到了非常奇怪的情况:当我清理其数据并将其卸载,然后与Studio一起安装时,该应用程序未统一化,但它使用1月24日的数据!我用平板电脑尝试了相同的过程,但该应用程序没有数据。

我已经重复了很多次这个过程,我清理了我的项目,多次重建它,它总是从1月24日的数据(数据库和共享的prefs)开始。

我甚至尝试了adb shell并运行以清理数据:

bullhead:/data/data/lelisoft.com.lelimath.debug $ ls -l databases/
total 232
-rw-rw---- 1 u0_a259 u0_a259 98304 2017-02-05 11:03 lelimath.sqlite
-rw------- 1 u0_a259 u0_a259 16928 2017-02-05 11:03 lelimath.sqlite-journal

我删除了它们,应用程序似乎是空的 - 直到我删除它并再次安装 - 1月24日又回来了。

这是它如何启动的日志:

$ adb shell am start -n "lelisoft.com.lelimath.debug/lelisoft.com.lelimath.activities.DashboardActivity" -a android.intent.action.MAIN -c android.intent.category.LAUNCHER -D
Waiting for application to come online: lelisoft.com.lelimath.debug | lelisoft.com.lelimath.debug.test
I/InstantRun: Instant Run Runtime started. Android package is lelisoft.com.lelimath.debug, real application class is lelisoft.com.lelimath.helpers.LeliMathApp.
D/l.c.l.h.LeliMathApp: onCreate()
D/l.c.l.h.BalanceHelper: Current points balance: 234

这是从调试器获取的数据库的位置:

/data/user/0/lelisoft.com.lelimath.debug/databases/lelimath.sqlite

等级:

android {
signingConfigs {
}
compileSdkVersion 24
buildToolsVersion "23.0.3"
defaultConfig {
    applicationId "lelisoft.com.lelimath"
    resValue 'string', 'app_name', 'LeliMath'
    minSdkVersion 16
    targetSdkVersion 24
    versionCode 300
    versionName '3.0.0'
    resValue "string", "app_build_number", getDate();
    resValue "string", "app_version", versionName;
}
buildTypes {
    release {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
    }

    debug {
        applicationIdSuffix ".debug"
        resValue 'string', 'app_name', 'LeliMath DEV'
    }
}

清单部分:

<application
    android:name=".helpers.LeliMathApp"
    android:allowBackup="true"
    android:fullBackupContent="true"
    android:icon="@mipmap/ic_launcher"
    android:label="@string/app_name"
    android:theme="@style/AppTheme"
    tools:ignore="GoogleAppIndexingWarning">

我不希望出厂重置我的手机以摆脱此数据。我不认为这些数据在我的构建中。我没有添加它们,平板电脑中的应用程序在安装时是空的。


答案 1

从Android 6.0(v 23)开始,Android引入了一项新功能,称为 应用程序自动备份 。这样做的是,它将应用程序的某些文件备份到用户的Google驱动器。它更新的文件列表包括:

  • 共享的首选项文件
  • 返回的目录中的文件getFilesDir()
  • 返回的目录中的文件getDatabasePath(String)
  • 使用getDir(String, int)
  • 外部存储上的文件位于返回的目录中getExternalFilesDir(String)

现在这行在负责它:manifest.xml

android:allowBackup="true"

如果您希望禁用备份,是否应选择将值设置为 。false

此外,备份的数据间隔为24小时,Android为此使用JobScheduler API,这意味着用户无法控制传输数据的过程。

此外,用于自动备份的空间限制为 MB ,并且不计入用户的空间配额。25

此外,您可以设置和上传某些类型的数据,例如,您可能不需要保存用户的机密数据,因此它也很灵活,有关该内容的更多信息,请访问: Android Auto Backup for Apps (100 Days of Google Dev)<include><exclude>


答案 2
<application ...
    android:allowBackup="false"
    android:fullBackupContent="false"
    tools:replace="android:allowBackup"
</application>

推荐