当前位置: 首页 > 面试题库 >

清单合并失败:属性application @ appComponentFactory更新Firebase库

云开诚
2023-03-14
问题内容

我正在尝试在我的项目中添加Firebase,但是当我实现'com.google.firebase:firebase- messaging:19.0.0'和时'com.google.firebase:firebase-core:17.0.0'

build.gradle(这是错误)

apply plugin: 'com.android.application'
apply plugin: 'com.google.gms.google-services'

android {
 compileSdkVersion 28
 defaultConfig {
    applicationId "com.example.user.mikripoli"
    minSdkVersion 15
    targetSdkVersion 28
    multiDexEnabled true
    versionCode 1
    versionName "1.0"
    testInstrumentationRunner 
 "android.support.test.runner.AndroidJUnitRunner"
 }
 buildTypes {
    release {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 
 'proguard-rules.pro'
    }
 }

 dexOptions {
    javaMaxHeapSize "2g"
 }
}

dependencies {
 implementation 'com.roughike:bottom-bar:2.0'
 implementation 'com.android.support:support-v4:28.0.0'
 implementation 'com.android.support:exifinterface:28.0.0'
 implementation 'com.android.support:animated-vector-drawable:28.0.0'
 implementation 'com.flaviofaria:kenburnsview:1.0.7'
 implementation fileTree(include: ['*.jar'], dir: 'libs')
 implementation 'com.android.support:appcompat-v7:28.0.0'
 implementation 'com.android.support.constraint:constraint-layout:1.1.3'
 implementation 'com.android.support:design:28.0.0'
 implementation 'com.github.chrisbanes:PhotoView:2.1.4'
 implementation 'com.google.firebase:firebase-messaging:19.0.0'
 implementation 'com.google.firebase:firebase-core:17.0.0'
 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.android.support:recyclerview-v7:28.0.0'
 implementation 'com.android.support:cardview-v7:28.0.0'
 implementation "com.google.android.gms:play-services-location:17.0.0"
 implementation 'com.google.android.gms:play-services-maps:17.0.0'
 implementation 'com.google.android.gms:play-services-base:17.0.0'
 implementation 'com.github.ahmedshaban1:EasySlider:1.0.0'
 implementation 'com.liangfeizc:SlidePageIndicator:1.1.0@aar'
 implementation 'me.relex:circleindicator:1.2.2@aar'
 implementation 'com.github.bumptech.glide:glide:4.8.0'
 annotationProcessor 'com.github.bumptech.glide:compiler:4.8.0'

}

另一个gradle文件:

buildscript {

 repositories {
    google()
    jcenter()
 }
 dependencies {
    classpath 'com.android.tools.build:gradle:3.4.1'
    classpath 'com.google.gms:google-services:4.2.0'


    // NOTE: Do not place your application dependencies here; they belong
    // in the individual module build.gradle files
  }
 }

  allprojects {
    repositories {
     google()
     mavenCentral()
     jcenter()
     maven {
        url "https://maven.google.com"
        }
     maven { url "https://jitpack.io" }
   }
  }

  task clean(type: Delete) {
   delete rootProject.buildDir
  }

显示的错误com.android.support:support-v4:28.0.0

不能合并使用groupId com.android.support和androidx。*的依赖关系,但发现IdeMavenCoordinates
{myGroupId =’com.android.support’,myArtifactId =’cardview-v7’,myVersion =
‘28 .0.0’,myPacking =’aar ‘,myClassifier =’null’}和IdeMavenCoordinates
{myGroupId =’androidx.coordinatorlayout’,myArtifactId
=’coordinatorlayout’,myVersion =‘1.0.0’,myPacking =’aar’,myClassifier
=’null’}不兼容的依赖项

检查信息:库,工具和库的某些组合不兼容或可能导致错误。一种不兼容的情况是使用不是最新版本(或特别是低于targetSdkVersion的版本)的Android支持库版本进行编译。

另外, 当我构建apk时,它会显示此错误:

清单合并失败:[com.android.support:support-compat:28.0.0]的属性application @
appComponentFactory value
=(android.support.v4.app.CoreComponentFactory)来自AndroidManifest.xml:22:18-91
[androidx.core:core:1.0.0] AndroidManifest.xml:22:18-86 value
=(androidx.core.app.CoreComponentFactory)。建议:在AndroidManifest.xml:13:5-354:19的元素上添加’tools:replace
=“ android:appComponentFactory”’以进行覆盖。

添加工具:replace =“ android:appComponentFactory”无效


问题答案:

在新版本中,库从Android支持库迁移到Jetpack(AndroidX)库。

除非您在应用中进行以下更改,否则更新的库将无法工作:

  • 将com.android.tools.build:gradle升级到v3.2.1或更高版本。

  • 将compileSdkVersion升级到28或更高版本。

  • 更新您的应用程序以使用Jetpack(AndroidX); 请按照迁移到AndroidX中的说明进行操作。

方法1:

将这两个添加到gradle.properties文件中,而不进行任何更新

android.useAndroidX=true
android.enableJetifier=true

方法2

如果Method-1不能解决您的问题,请执行一件事,如果您使用的是Android Studio 3.2或更高版本,请转到 Refactor >
Migrate to AndroidX …



 类似资料:
  • 所有这些都很好,但我正在尝试添加这个库https://github.com/wdullaer/MaterialDateTimePicker 突然,当我同步我的分级时,它给了我这个错误 即使我把这个建议加在我的清单上 我无法完成它,因为现在我得到了这个错误 编辑-解决方案:感谢所有的btw,所以降级库是可以的,但它给了我这个错误 关于不同版本支持的错误(由于我的级别,不能直接放,抱歉) 然后我做了一

  • 当我使用构建Gradle时,我得到以下错误。请帮我解决这个问题。 错误消息:清单合并失败:[com.android.support:support-compat:28.0.0]AndroidManifest.xml:22:18-91中的属性application@AppComponentFactory value=(Android.support.v4.app.CoreComponentFacto

  • 我将遵循以下教程:https://www.youtube.com/watch?v=xtElLuzjA0U 我使用Android Studio 3.2.1-每当我实现实现'me.zhanghai.android.materialprogressbar:库:1.6.1'我得到这个错误: 当我第一次编写本教程时,所有内容都已编译,我能够获得进度条,但当我尝试调试和构建时,它崩溃了。现在,我的第二次,实现

  • 我已经尝试了多个网站上的所有解决方案,似乎没有任何东西可以修复它。这是我每次尝试运行时收到的错误。我已经修了一个多星期了。 清单文件生成.Gradle 我希望项目能够运行,但每次尝试都得到相同的错误,即使是在遵循其建议时也是如此

  • 清单合并失败:来自AndroidManifest.xml:11:9-40的属性application@theme value=(@style/apptheme)也出现在[com.github.todd-davies:ProgressWheel:1.2]AndroidManifest.xml:13:9-56value=(@android:style/theme.notitlebar)中。建议:将't

  • 在中将和设置为false后,上述错误得以解决,但我得到的错误如下:错误:清单合并失败:来自[com.android.support:support-compat:28.0.0]androidmanifest.xml:22:18-91的属性application@AppComponentFactory value=(android.support.v4.app.CoreComponentFactor