Attribute application@allowBackup value=(true) from AndroidManifest.xml:7:9-35

Posted 切切歆语

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Attribute application@allowBackup value=(true) from AndroidManifest.xml:7:9-35相关的知识,希望对你有一定的参考价值。

 

 

 

1:

androidManifest.xml 配置文件中显式配置 android:allowBackup=false。

项目中代码 allowBackup="true" 改为 allowBackup=false

 <application
        android:name=".application.SmartApplication"
        android:allowBackup="false"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:supportsRtl="true"
        android:theme="@style/AppTheme">

 

2:

在application节点添加

 <application
            tools:replace="android:allowBackup">

 

在AndroidManifest.xml中加入xmlns:tools="http://schemas.android.com/tools

<manifest package="xxx"
          xmlns:android="http://schemas.android.com/apk/res/android"
          xmlns:tools="http://schemas.android.com/tools">

 



以上是关于Attribute application@allowBackup value=(true) from AndroidManifest.xml:7:9-35的主要内容,如果未能解决你的问题,请参考以下文章

[NSLayoutConstraint constraintWithItem:attribute:relatedBy:toItem:attribute:multiplier:constant:]:约束

理解Attribute

Attribute

C 语言编程 — GCC Attribute 语法扩展

C 语言编程 — GCC Attribute 语法扩展

Attribute操作的性能优化方式