我仍然是Android应用程序的初学者,因此当我尝试构建此应用程序时,在日志中收到以下错误:
Manifest merger failed : 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:5:5-31:19 to override.
和所述build.grade文件有这个依赖
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
implementation 'com.android.support:appcompat-v7:28.0.0'
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
implementation 'com.google.firebase:firebase-auth:16.1.0'
implementation 'com.google.firebase:firebase-core:16.0.1'
implementation 'com.google.firebase:firebase-storage:16.0.5'
implementation 'com.google.firebase:firebase-database:16.0.5'
implementation 'de.hdodenhof:circleimageview:3.0.0'
implementation 'com.android.support:recyclerview-v7:28.0.0'
implementation 'com.xwray:groupie:2.3.0'
implementation 'com.xwray:groupie-kotlin-android-extensions:2.3.0'
implementation 'com.squareup.picasso:picasso:2.71828'
}
我尝试通过Google搜索解决方案,但没有找到答案。
答案 0 :(得分:1)
将这些行添加到gradle.properties
文件中:
android.useAndroidX=true
android.enableJetifier=true
说明:某些依赖项,例如com.xwray:groupie:2.3.0,使用Android X。Jetifier是必需的,以便在Android X中使用android.support。*类,如建议{{3 }}。
答案 1 :(得分:0)
我也记录一下 再本人的设备上,是由于androidx和android support不兼容导致。
删除项目所有androidx的方法,或者使用上面那个人说的。 查看当前项目是否引用androidx相关的库,请再终端里面执行gradlew:app:dependencies> 1.txt然后查看是否有androidx的关键字,然后把相应的导入库也成支持的即可。