web-dev-qa-db-ja.com

android project in ... 'app'解決されたGoogle Play開発者サービスライブラリの依存関係は、正確なバージョンで別の依存関係に依存しています

正常に動作していたアプリケーションがありますが、今日はプロジェクトのビルド中にエラーが発生しています。私は丸一日を費やし、スタックからあまりにも多くのソリューションを試してみました。何も機能していません。

私は次のアプリを持っています-> build.gradle

apply plugin: 'com.Android.application'
apply plugin: 'io.fabric'

Android {
    compileSdkVersion 29
    defaultConfig {
        applicationId "com.myapp.immuno"
        minSdkVersion 16
        targetSdkVersion 29
        versionCode 1
        versionName "2.0"
        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
        multiDexEnabled true
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-Android-optimize.txt'), 'proguard-rules.pro'
            aaptOptions.cruncherEnabled = false // here
        }
    }
}

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation 'androidx.appcompat:appcompat:1.1.0'
    implementation 'com.google.Android.material:material:1.0.0'
    implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
    implementation 'androidx.navigation:navigation-fragment:2.1.0'
    implementation 'androidx.navigation:navigation-ui:2.1.0'
    implementation 'androidx.lifecycle:lifecycle-extensions:2.1.0'
    implementation 'androidx.legacy:legacy-support-v4:1.0.0'
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'androidx.test:runner:1.2.0'
    androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'

    implementation 'com.google.code.gson:gson:2.8.5'

    // Firebase libraries
    implementation 'com.google.firebase:firebase-core:17.2.1'
    implementation 'com.google.firebase:firebase-messaging:20.1.0'
    implementation 'com.google.firebase:firebase-analytics:17.2.1'
    implementation 'com.google.Android.gms:play-services-auth:17.0.0'
    implementation 'com.google.firebase:firebase-auth:19.2.0'
    implementation 'com.google.firebase:firebase-crash:16.2.1'
    implementation 'com.google.firebase:firebase-database:19.2.0'
    implementation 'com.google.firebase:firebase-storage:19.1.0'

    // circular image
    implementation 'de.hdodenhof:circleimageview:2.2.0'

    // RecyclerView
    //noinspection GradleCompatible
    implementation 'com.Android.support:recyclerview-v7:28.0.0'
    //FacebookSdk
    //implementation 'com.facebook.Android:facebook-Android-sdk:4.37.0'
    //implementation 'com.facebook.Android:facebook-login:4.37.0'

    // volley library
    implementation 'com.Android.volley:volley:1.1.1'

    implementation 'com.google.Android.gms:play-services:17.0.0'
    implementation 'me.dm7.barcodescanner:zxing:1.9.8'

    // Glide library to load images smoothly
    implementation 'com.github.bumptech.glide:glide:4.8.0'
    annotationProcessor 'com.github.bumptech.glide:compiler:4.8.0'

    // To get date and time
    implementation 'net.danlew:Android.joda:2.10.1.1'

    // external libraries for mail
    implementation files('libs/activation.jar')
    implementation files('libs/additionnal.jar')
    implementation files('libs/mail.jar')

    // Add the Fabric Crashlytics plugin.
    //classpath 'io.fabric.tools:gradle:1.31.2'
    // Add the Firebase Crashlytics dependency.
    implementation 'com.crashlytics.sdk.Android:crashlytics:2.10.1'


    }

    apply plugin: 'com.google.gms.google-services'
`

そしてbuild.gradleは

buildscript {
    repositories {
        google()
        jcenter()
        maven { url 'https://maven.fabric.io/public' }
    }
    dependencies {
        classpath 'com.Android.tools.build:gradle:3.5.3'
        classpath 'com.google.gms:google-services:4.3.3'
        classpath 'io.fabric.tools:gradle:1.31.2'
        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

allprojects {
    repositories {
        google()
        jcenter()

    }
}

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

プロジェクトの構築時にこのエラーが発生します

エラー:プロジェクト「アプリ」で、解決されたGoogle Play開発者サービスライブラリの依存関係は、正確なバージョン(「[20.0.2]」など)に依存していますが、そのバージョンに解決されていません。ライブラリが示す動作は不明です。

依存関係の失敗:com.google.firebase:firebase-messaging:20.1.0-> com.google.firebase:firebase-iid @ [20.0.2]ですが、firebase-iidのバージョンは19.0.0でした。

The following dependencies are project dependencies that are direct or have transitive dependencies that lead to the art
ifact with the issue.
-- Project 'app' depends onto com.google.firebase:firebase-iid@{strictly 19.0.0}
-- Project 'app' depends onto com.google.firebase:[email protected]
-- Project 'app' depends onto com.google.firebase:[email protected]
-- Project 'app' depends onto com.google.firebase:firebase-messaging@{strictly 20.1.0}
-- Project 'app' depends onto com.google.firebase:[email protected]
-- Project 'app' depends onto com.google.firebase:firebase-crash@{strictly 16.2.1}
-- Project 'app' depends onto com.google.firebase:[email protected]
-- Project 'app' depends onto com.google.firebase:firebase-core@{strictly 17.2.1}
-- Project 'app' depends onto com.google.firebase:firebase-analytics@{strictly 17.2.1}
-- Project 'app' depends onto com.google.Android.gms:play-services-measurement-api@{strictly 17.2.1}

拡張デバッグ情報については、コマンドラインから./gradlew --info:app:assembleDebugを使用してGradleを実行し、アーティファクトへの依存パスを確認します。このエラーメッセージはgoogle-services Gradleプラグインから送信されました https://github.com/google/play-services-plugins で問題を報告し、「googleServices {disableVersionCheck = false}」を追加して無効にしてくださいbuild.gradleファイル。

3
Talha Afzal

これが私がやった問題と解決したステップです:

  1. 私が変更され com.google.firebase:firebase-messaging:20.1.0からcom.google.firebase:firebase-messaging:20.0.1
  2. グラドルを同期
  3. そして、rollBackの変更(20.0.120.1.に変更)
  4. アプリを同期して実行すると、問題が解決したことがわかります!

私はこれが正しい方法ではないことを知っていますが、私の問題を解決しました。すべての修正を置き換える必要があります。

2
Mahdi Moqadasi

Android Studioを再起動し、キャッシュをクリアした後も同じ問題が発生したため、古き良き再起動-コンピュータートリックはそれを行いました。

0
Kaiser

ライブラリのバージョンを次のように更新するだけです

 implementation 'com.google.firebase:firebase-messaging:20.2.0'

最後にアプリを同期すると、問題が解決したことがわかります!

0
Jatin