1. ホーム
  2. android

[解決済み] Gradle Error:Execution failed for task ':app:processDebugGoogleServices'.

2022-02-09 18:27:39

質問

私のアンドロイドアプリにGoogleサインインを統合するために、このリンクに従います。 https://developers.google.com/identity/sign-in/android/start-integrating 上記のページの最後のステップにあるように、依存関係を含める必要があります。

 compile 'com.google.android.gms:play-services-auth:8.3.0' 

を app-level build.gradle ファイルに追加しましたが、プロジェクトをビルドすると、次のようなエラーが発生しました。

Error:Execution failed for task ':app:processDebugGoogleServices'.
> Please fix the version conflict.

build.gradle(モジュール:app)

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


android {
    compileSdkVersion 23
    buildToolsVersion "23.0.2"

    defaultConfig {
        applicationId "com.brainbreaker.socialbuttons"
        minSdkVersion 16
        targetSdkVersion 23
        versionCode 1
        versionName "1.0"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    testCompile 'junit:junit:4.12'
    compile 'com.android.support:appcompat-v7:23.0.1'
    compile 'com.android.support:design:23.0.1'
    compile 'com.google.android.gms:play-services-auth:8.3.0'
}

build.gradleファイルのコンパイル依存関係の行に compile 'com.google.android.gms:play-services-auth:8.3.0' はエラーを表示します。

com.google.android.gmsのライブラリは、すべて全く同じバージョンを使用する必要があります。 を指定してください (バージョンが混在しているとランタイムクラッシュにつながる可能性があります)。見つかったもの バージョン 8.3.0, 8.1.0。例を挙げると com.google.android.gms:play-services-base:8.3.0 および com.google.android.gms:play-services-measurement:8.1.0 いくつかあるようです。 ライブラリ、またはツールとライブラリの組み合わせは、以下の通りです。 互換性がない、あるいはバグを引き起こす可能性があります。そのような非互換性の1つが Androidサポートライブラリのバージョンと異なるバージョンでコンパイルした場合 最新バージョンよりも低いバージョン(特に targetSdkVersion)

以下、gradle buildのメッセージです。

Information:Gradle tasks [clean, :app:generateDebugSources, :app:generateDebugAndroidTestSources, :app:compileDebugSources, :app:compileDebugAndroidTestSources, :social_buttons:generateDebugSources, :social_buttons:generateDebugAndroidTestSources, :social_buttons:compileDebugSources, :social_buttons:compileDebugAndroidTestSources]
:clean UP-TO-DATE
:app:clean
:social_buttons:clean
:app:preBuild UP-TO-DATE
:app:preDebugBuild UP-TO-DATE
:app:checkDebugManifest
:app:preReleaseBuild UP-TO-DATE
:app:prepareComAndroidSupportAppcompatV72301Library
:app:prepareComAndroidSupportDesign2301Library
:app:prepareComAndroidSupportSupportV42301Library
:app:prepareComGoogleAndroidGmsPlayServicesAds810Library
:app:prepareComGoogleAndroidGmsPlayServicesAnalytics810Library
:app:prepareComGoogleAndroidGmsPlayServicesAppindexing810Library
:app:prepareComGoogleAndroidGmsPlayServicesAuth830Library
:app:prepareComGoogleAndroidGmsPlayServicesBase830Library
:app:prepareComGoogleAndroidGmsPlayServicesBasement830Library
:app:prepareComGoogleAndroidGmsPlayServicesMeasurement810Library
:app:prepareDebugDependencies
:app:compileDebugAidl
:app:compileDebugRenderscript
:app:generateDebugBuildConfig
:app:generateDebugAssets UP-TO-DATE
:app:mergeDebugAssets
:app:generateDebugResValues UP-TO-DATE
:app:processDebugGoogleServices
Found com.google.android.gms:play-services-auth:8.3.0, but version 8.1.0 is needed
Found com.google.android.gms:play-services-auth:8.3.0, but version 8.1.0 is needed
Found com.google.android.gms:play-services-auth:8.3.0, but version 8.1.0 is needed
Found com.google.android.gms:play-services-auth:8.3.0, but version 8.1.0 is needed
Found com.google.android.gms:play-services-auth:8.3.0, but version 8.1.0 is needed
:app:processDebugGoogleServices FAILED
Error:Execution failed for task ':app:processDebugGoogleServices'.
> Please fix the version conflict.
Information:BUILD FAILED
Information:Total time: 3.49 secs
Information:1 error
Information:0 warnings
Information:See complete output in console

このバージョンの衝突を解決する方法は見当たりません。何か助かる方法があれば教えてください。

解決方法を教えてください。

私も同じ問題が発生しましたが、現在は解決しています。

行を削除する必要があります。 apply plugin: 'com.google.gms.google-services'

com.android.application"パッケージがすでに同じパッケージを持っているためです。