React native Shoute UI反应本机Android未构建

React native Shoute UI反应本机Android未构建,react-native,react-native-android,shoutem,React Native,React Native Android,Shoutem,在再次手动安装我的每一个库之后,我注意到ShoutemUI抛出了一个错误,并破坏了我仅针对android的构建 Manifest merger failed : Attribute application@allowBackup value=(false) from AndroidManifest.xml:11:7-34 is also present at [me.relex:photodraweeview:1.0.0] AndroidManifest.xml:10:9-35 value=(t

在再次手动安装我的每一个库之后,我注意到ShoutemUI抛出了一个错误,并破坏了我仅针对android的构建

Manifest merger failed : Attribute application@allowBackup value=(false) from AndroidManifest.xml:11:7-34
is also present at [me.relex:photodraweeview:1.0.0] AndroidManifest.xml:10:9-35 value=(true).
Suggestion: add 'tools:replace="android:allowBackup"' to <application> element at AndroidManifest.xml:7:5-117 to override.
我目前正在使用react native verion:0.62.2

这些是我安装的其他库

"dependencies": {
"@react-native-community/datetimepicker": "^2.4.2",
"@react-native-community/picker": "^1.6.5",
"@react-native-firebase/app": "^7.3.0",
"@react-native-firebase/auth": "^8.0.7",
"@react-native-firebase/database": "^7.2.4",
"@react-native-firebase/firestore": "^7.2.1",
"@react-native-firebase/storage": "^7.1.5",
"@react-navigation/bottom-tabs": "^5.5.2",
"@react-navigation/native": "^5.5.1",
"@react-navigation/stack": "^5.5.1",
"@shoutem/ui": "^2.0.3",
"react": "16.11.0",
"react-native": "0.62.2",
"react-native-linear-gradient": "~2.5.6",
"react-native-modal-datetime-picker": "^8.7.1",
"react-native-photo-view": "github:shoutem/react-native-photo-view#0ffa1481f6b6cb8663cb291b7db1d6644440584d",
"react-native-vector-icons": "^6.6.0",
"react-native-webview": "9.4.0"
},


有人知道如何解决这个问题吗?

android:allowBackup=“false”
更改为
android:allowBackup=“true”
在android/app/src/main/AndroidManifest.xml中

那之后呢

cd android (./gradlew clean)


这解决了我的问题

我还尝试降级到RN版本0.61.5。但仍然面临同样的问题
cd android (./gradlew clean)
cd .. build apk