当前位置: 首页 > 知识库问答 >
问题:

AndroidX和places:places-compat给出错误:清单合并失败,出现多个错误,请参阅日志

朱锐
2023-03-14

我必须将我的旧项目迁移到AndroidX,并将所有依赖项更新到最新版本,但唯一的一个在清单合并中出错。

仅此依赖项得到错误错误:清单合并失败,出现多个错误,请参阅日志:

implementation 'com.google.android.libraries.places:places-compat:2.1.0'

我是说,当我移除它时,错误就消失了。

这是我的app.build


    apply plugin: 'com.android.application'

    android {
        compileSdkVersion 28
        buildToolsVersion '28.0.3'
        defaultConfig {
            applicationId "com.pertamina.tbbm.rewulu.ecodriving.mobil"
            minSdkVersion 16
            targetSdkVersion 28
            versionCode 12
            versionName "5.5.1"
            multiDexEnabled true
        }
        buildTypes {
            release {
                minifyEnabled false
                proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
                signingConfig signingConfigs.release
            }
        }
        dexOptions {
            javaMaxHeapSize "8g"
        }
    }

    dependencies {
        implementation fileTree(dir: 'libs', include: ['*.jar'])
        implementation 'androidx.appcompat:appcompat:1.1.0'
        implementation 'androidx.vectordrawable:vectordrawable-animated:1.1.0'
        implementation 'androidx.legacy:legacy-support-v4:1.0.0'
        implementation 'androidx.recyclerview:recyclerview:1.0.0'
        implementation 'androidx.cardview:cardview:1.0.0'
        implementation 'androidx.multidex:multidex:2.0.1'
        implementation 'com.google.code.gson:gson:2.8.5'
        implementation 'com.squareup.retrofit2:retrofit:2.3.0'
        implementation 'com.squareup.retrofit2:converter-gson:2.3.0'
        implementation 'com.squareup.okhttp3:logging-interceptor:3.9.1'
        implementation 'com.google.android.material:material:1.0.0'
        implementation 'com.sothree.slidinguppanel:library:3.4.0'
        implementation 'com.nostra13.universalimageloader:universal-image-loader:1.9.5'
        implementation 'com.google.android.gms:play-services-auth:17.0.0'
        implementation 'com.google.android.gms:play-services-maps:17.0.0'
        implementation 'com.google.android.libraries.places:places:2.1.0'
        implementation 'com.google.android.libraries.places:places-compat:2.1.0'
        implementation 'com.facebook.android:facebook-android-sdk:4.42.0'
        implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
        implementation 'com.github.PhilJay:MPAndroidChart:v3.0.2'
        implementation 'junit:junit:4.12'
        androidTestImplementation 'androidx.test:runner:1.2.0'
        androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
    }
    apply plugin: 'com.google.gms.google-services'


这里是manifest.xml

我真的不知道我的配置有什么问题...在网上找了一整天却一无所获...

注意:当我迁移到AndroidX时,按Refractor>migrate to AndroidX有警告pop说在项目中找不到任何用法。

谢谢

共有2个答案

季骏祥
2023-03-14

您是否尝试按以下方式替换依赖项?

    implementation "com.google.android.libraries.places:places:1.1.0"

公孙高畅
2023-03-14

尝试从应用程序build.gradle文件中删除implementation'com.google.android.libraries.places:places:2.1.0'它应该可以正常工作

 类似资料: