反应原生或ExpoKit中的Android Material和appcompat Manifest合并失败
作者:互联网
我将’android.support:appcompat-v7’更新为28.0.0.
但它带来了构建错误.
Attribute application@appComponentFactory value=(android.support.v4.app.CoreComponentFactory) from [com.android.support:support-compat:28.0.0] AndroidManifest.xml:22:18-91
is also present at [androidx.core:core:1.0.0] AndroidManifest.xml:22:18-86 value=(androidx.core.app.CoreComponentFactory).
Suggestion: add 'tools:replace="android:appComponentFactory"' to <application> element at AndroidManifest.xml:8:5-23:19 to override.
然后我在Logcat中收到此错误:
Manifest merger failed
我的app.gradle:
configurations.all {
resolutionStrategy.force 'com.android.support:design:28.0.0'
resolutionStrategy.force "com.android.support:support-v4:28.0.0"
resolutionStrategy.force "com.android.support:support-media-compat:28.0.0"
}
...
dependencies {
implementation 'com.android.support:multidex:1.0.1'
// Our dependencies
implementation 'com.android.support:appcompat-v7:28.0.0'
implementation 'com.android.support:appcompat-v7:28.0.0'
}
我如何解决它?
我需要你的解决方案.
先感谢您.
解决方法:
将’react-native-device-info’升级到2.1.2版本为我修复了错误.见github.com/facebook/react-native/issues/25294#issuecomment-503024749
简而言之:库使用“services-gcm:”作为依赖项,最新的gcm版本导致了这个问题.
标签:expo,android,react-native,react-native-android 来源: https://codeday.me/bug/20190930/1836542.html