当 allowBackup 为 false 时,为什么会出现关于 fullBackupContent 警告的 lint 警告?
Why a lint warning about fullBackupContent warning when allowBackup is false?
对于具有 android:allowBackup="false"
、Android lint 报告的应用程序:
Should explicitly set 'android:fullBackupContent' to avoid backing up the GCM device specific regId.
这只是 lint 规则中的错误,还是我真的需要担心 regId 被备份并恢复到另一台设备上?
这确实是 bug 已在 AS 1.4 中修复。现在,您只会在 allowBackup="true"
或缺少属性(默认为 true)
时收到此 lint 警告
对于具有 android:allowBackup="false"
、Android lint 报告的应用程序:
Should explicitly set 'android:fullBackupContent' to avoid backing up the GCM device specific regId.
这只是 lint 规则中的错误,还是我真的需要担心 regId 被备份并恢复到另一台设备上?
这确实是 bug 已在 AS 1.4 中修复。现在,您只会在 allowBackup="true"
或缺少属性(默认为 true)