我的AndroidManifest.xml
中的代码:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.avi12.palindrome"
android:versionCode="59"
android:versionName="3.3" >
<uses-sdk
android:minSdkVersion="14"
android:targetSdkVersion="27" />
<application
android:allowBackup="true"
android:debuggable="true"
android:fullBackupContent=""
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme" >
<activity
android:name="com.avi12.palindrome.MainActivity"
android:label="@string/app_name"
android:screenOrientation="portrait" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<!--
ATTENTION: This was auto-generated to add Google Play services to your project for
App Indexing. See https://g.co/AppIndexing/AndroidStudio for more information.
-->
<meta-data
android:name="com.google.android.gms.version"
android:value="@integer/google_play_services_version" />
<activity
android:name="com.google.android.gms.common.api.GoogleApiActivity"
android:exported="false"
android:theme="@android:style/Theme.Translucent.NoTitleBar" />
<provider
android:name="com.google.firebase.provider.FirebaseInitProvider"
android:authorities="com.avi12.palindrome.firebaseinitprovider"
android:exported="false"
android:initOrder="100" />
<meta-data
android:name="android.arch.lifecycle.VERSION"
android:value="27.0.0-SNAPSHOT" />
</application>
</manifest>
我尝试清理项目,但没有帮助,
我不确定是什么导致了这些错误
结果,我无法建立一个APK
我该如何解决这个问题?谢谢!
答案 0 :(得分:6)
android:fullBackupContent=""
不能为空,因此应指向XML
,其中应包含定义备份政策的规则
From Docs
在AndroidManifest.xml
中,将android:fullBackupContent
属性添加到<application>
元素。此属性指向包含备份规则的XML文件。例如:
<application ...
android:fullBackupContent="@xml/my_backup_rules">
</app>
在my_backup_rules.xml
目录中创建名为res/xml/
的XML文件。在文件中,添加包含<include>
和<exclude>
元素的规则。以下示例备份除device.xml
以外的所有共享首选项:
<?xml version="1.0" encoding="utf-8"?>
<full-backup-content>
<include domain="sharedpref" path="."/>
<exclude domain="sharedpref" path="device.xml"/>
</full-backup-content>
或
从错误日志中,您还可以将boolean
值定义为
// hasn't test it but
// judging from error android:fullBackupContent (attr)reference|boolean
android:fullBackupContent=false
答案 1 :(得分:2)
从清单android:fullBackupContent=""
中删除它,或者创建xml规则并在其中添加android:fullBackupContent="@xml/my_backup_rules"
,其中my_back_rules是您创建的xml文件,它已设置规则来定义要备份的文件。< / p>
https://developer.android.com/guide/topics/data/autobackup.html
请访问此链接以获取更多信息。