次のエラーが表示されます
Error:Execution failed for task ':app:processDebugGoogleServices'.
> Please fix the version conflict either by updating the version of the google-services plugin (information about the latest version is available at https://bintray.com/Android/android-tools/com.google.gms.google-services/) or updating the version of com.google.Android.gms to 9.0.0.
https://bintray.com/Android/android-tools/com.google.gms.google-services/ を見てみたところ、com.google.gms:google-services:3.0.0のようです最新になる。これは私のプロジェクトのgradleです
dependencies {
classpath 'com.Android.tools.build:gradle:2.1.2'
classpath 'com.google.gms:google-services:3.0.0'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
そして、これは私のアプリのgradleがどのように見えるかです
buildscript {
repositories {
maven { url 'https://maven.fabric.io/public' }
}
dependencies {
classpath 'io.fabric.tools:gradle:1.+'
}
}
apply plugin: 'com.Android.application'
apply plugin: 'io.fabric'
apply plugin: 'com.google.gms.google-services'
repositories {
maven { url 'https://maven.fabric.io/public' }
}
Android {
compileSdkVersion 24
buildToolsVersion "24.0.1"
useLibrary 'org.Apache.http.legacy'
defaultConfig {
applicationId "com.myapp.preburn"
minSdkVersion 10
targetSdkVersion 24
versionCode 14
versionName "2.0.1"
renderscriptTargetApi 22
renderscriptSupportModeEnabled true
}
buildTypes {
release {
lintOptions {
disable 'MissingTranslation'
}
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-Android.txt'), 'proguard-rules.pro'
}
}
}
Android {
packagingOptions {
exclude 'META-INF/DEPENDENCIES'
exclude 'META-INF/NOTICE'
exclude 'META-INF/LICENSE'
}
}
repositories {
mavenCentral()
jcenter()
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile fileTree(dir: 'libs', include: 'Parse-*.jar')
compile 'com.parse.bolts:bolts-Android:1.2.0'
compile 'com.Android.support:appcompat-v7:24.1.1'
compile 'com.mcxiaoke.volley:library:1.0.9'
compile 'com.google.Android.gms:play-services-gcm:9.4.0'
compile 'com.google.Android.gms:play-services-location:9.4.0'
compile 'com.google.Android.gms:play-services-maps:9.4.0'
compile 'com.google.Android.gms:play-services-ads:9.4.0'
compile 'com.google.Android.gms:play-services-plus:9.4.0'
compile 'com.google.Android.gms:play-services-analytics:9.4.0'
compile 'me.leolin:ShortcutBadger:1.1.3@aar'
compile 'com.squareup.picasso:picasso:2.5.2'
compile files('libs/jsoup-1.7.3.jar')
compile('com.crashlytics.sdk.Android:crashlytics:2.5.5@aar') {
transitive = true;
}
compile files('libs/InMobi-5.2.2.jar')
compile files('libs/libadapterinmobi.jar')
compile files('libs/StartAppAdMobMediation-1.0.1.jar')
compile files('libs/StartAppInApp-3.3.1.jar')
compile 'org.adw.library:discrete-seekbar:1.0.1'
compile 'com.pnikosis:materialish-progress:1.0'
}
Playサービスを9.0.0に変更すると、すべてが正常にコンパイルされます。ここに何が欠けていますか?
dependencies
ブロックの下にapply plugin: 'com.google.gms.google-services'
行を配置する必要があります-これにより、プラグインは使用しているPlayサービスのバージョンを判別できます。
Firebaseの依存関係がある場合。 Googleサービスのバージョンに合わせてバージョンを更新します:例:
//Firebase Crashreports
compile 'com.google.firebase:firebase-crash:9.6.1'
//Firebase Analytics
compile 'com.google.firebase:firebase-core:9.6.1'
compile 'com.google.Android.gms:play-services-analytics:9.6.1'
compile 'com.google.Android.gms:play-services-gcm:9.6.1'
すべてに同じ9.6.1バージョンが必要です
依存関係の後にこれを書くだけです
apply plugin: 'com.google.gms.google-services'
私は同様の問題に直面していました。プラグインが追加されたとき、それは私にとってはうまくいきませんでした。これは競合バージョンの私の問題を解決します
apply plugin: 'com.google.gms.google-services'
これらの行に依存関係を追加します
compile 'com.google.firebase:firebase-core:9.2.0'
compile 'com.google.firebase:firebase-messaging:9.2.0'
compile 'com.google.Android.gms:play-services-location:9.2.0'
compile 'com.google.Android.gms:play-services-places:9.2.0'
ラインはありますか
apply plugin: 'com.google.gms.google-services'
build.gradleファイルの最後の行ですか?
このエラーは、「プラグインを適用する」が一番上にあるときに主に発生しました。
私は同じ問題に遭遇します。
私の解決策は、コードに何も追加するのではなく、Google Support Repository
をダウンロードすることでした-ツール-> Android -> SDK Manager -> SDK Tools
で見つけることができます
依存関係の下にgoogle-servicesを適用するだけです。私のために働いた。
Googleリポジトリをインストールしました:
Android> SDK Manager。 Android Studio SDKマネージャーを更新します。[SDKツール]をクリックし、[サポートリポジトリ]を展開し、[Googleリポジトリ]を選択して、[OK]をクリックします。