所以我收到此错误:
Android resource linking failed
Output: C:\Users\tomas\AndroidStudioProjects\app\app\build\intermediates\merged_manifests\debug\processDebugManifest\merged\AndroidManifest.xml:11: error: '@android:' is incompatible with attribute fullBackupContent (attr) reference|boolean.
error: failed processing manifest.
在我的应用上,我目前正在android studio上进行开发。
答案 0 :(得分:0)
@android:
'与属性fullBackupContent
(attr)不兼容
在fullBackupContent
的{{1}}标签的<application
中,您进行了如下设置:
AndroidManifest.xml
或仅@android/anything
这不是真的,只需要布尔值,如@android
或true
。
检查错误:
false
答案 1 :(得分:0)
我认为您错误地使用了@android/name_of_file_for_backup_rules
来代替@xml/
。
fullBackupContent属性指向包含备份规则的XML文件。例如:
<application ...
android:fullBackupContent="@xml/my_backup_rules">
</application>
必须在res / xml中创建my_backup_rules.xml以用于备份规则。 例如:
<?xml version="1.0" encoding="utf-8"?>
<full-backup-content>
<include domain="sharedpref" path="."/>
<exclude domain="sharedpref" path="device.xml"/>
</full-backup-content>
有关更多信息,请参阅:Back up user data with Auto Backup developers.google.com: