将 allowBackup 设置为 false 后收到错误消息
Getting error messages after setting allowBackup to false
我正在尝试在我的应用程序中禁用备份。当我添加以下内容时
<application
android:name=".myAoo"
android:allowBackup="false"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:largeHeap="true"
android:supportsRtl="true"
android:theme="@style/AppTheme">
它开始给我这个错误信息
Error:Execution failed for task
':app:processArmeabi-v7aDebugManifest'. Manifest merger failed with
multiple errors, see logs
此错误消息的可能原因是什么,以及为什么它只在我尝试禁用时出现 backup
。
虽然 Manifest
文件给出了如下多个警告。
use $ instead of '.'
打开应用程序清单(AndroidManifest.xml),点击合并Manifest.Check图像
您可以在右栏中查看错误,尝试解决error.It可能会帮助有同样问题的人。
我正在尝试在我的应用程序中禁用备份。当我添加以下内容时
<application
android:name=".myAoo"
android:allowBackup="false"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:largeHeap="true"
android:supportsRtl="true"
android:theme="@style/AppTheme">
它开始给我这个错误信息
Error:Execution failed for task ':app:processArmeabi-v7aDebugManifest'. Manifest merger failed with multiple errors, see logs
此错误消息的可能原因是什么,以及为什么它只在我尝试禁用时出现 backup
。
虽然 Manifest
文件给出了如下多个警告。
use $ instead of '.'
打开应用程序清单(AndroidManifest.xml),点击合并Manifest.Check图像
您可以在右栏中查看错误,尝试解决error.It可能会帮助有同样问题的人。