24
Gradleエラー:タスク ':app:processDebugGoogleServices'の実行に失敗しました
このリンクをたどって、AndroidアプリにGoogleサインインを統合しています。https://developers.google.com/identity/sign-in/android/start-integrating 上記のページの最後のステップで示したように、依存関係を含める必要があります compile 'com.google.android.gms:play-services-auth:8.3.0' アプリレベルのbuild.gradleファイルにありますが、そうするとプロジェクトをビルドするとエラーが発生します Error:Execution failed for task ':app:processDebugGoogleServices'. > Please fix the version conflict. build.gradle(Module: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'), …