[android警告] AndroidManifest.xml警告 Should explicitly set android:allowBackup to true or false

http://www.cnblogs.com/javadu/p/3812528.html

Android中AndroidManifest.xml警告

Should explicitly set android:allowBackup to true or false (it's true by default, and that can have some security implications for the application's data)

解决方案:

<application
        android:allowBackup="true"
<application
        android:allowBackup="false"
注意:android:allowBackup 必须是application中第一个标签键值对。
或者
 
 
 
 
 
原文地址:https://www.cnblogs.com/carl2380/p/4177743.html