如何防止自动备份安卓应用程序?
2022-09-02 00:28:48
我在某些设备上(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">
我不希望出厂重置我的手机以摆脱此数据。我不认为这些数据在我的构建中。我没有添加它们,平板电脑中的应用程序在安装时是空的。