错误信息
Manifest merger failed : Attribute application@allowBackup
value=(true) from AndroidManifest.xml:48:9-35 is also present at
[com.aliyun.ams:alicloud-android-feedback:3.4.1]
AndroidManifest.xml:20:18-45 value=(false). Suggestion: add
‘tools:replace=“android:allowBackup”’ to element at
AndroidManifest.xml:46:5-416:19 to override.
修改
android:allowBackup="true"
改为false
tools:replace="android:label"
增加allowBackup
tools:replace="android:label,allowBackup"
解决