这是我从以下行得到的错误消息:compile 'com.google.android.gms:play-services-ads:15.0.0'
在我的应用程序build.gradle
中的依赖项中:
All com.google.android.gms libraries must use the exact same version specification (mixing versions can lead to runtime crashes). Found versions 15.0.4, 15.0.1, 15.0.0. Examples include com.google.android.gms:play-services-measurement-base:15.0.4 and com.google.android.gms:play-services-ads-identifier:15.0.1
有人知道如何消除此错误消息吗?
这是我的应用gradle文件:
buildscript {
repositories {
jcenter()
maven {
url 'https://maven.fabric.io/public'
}
}
dependencies {
classpath 'com.android.tools.build:gradle:2.2.3'
classpath 'com.google.gms:google-services:4.0.0'
classpath 'io.fabric.tools:gradle:1.25.4'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
jcenter()
maven {
url 'https://maven.google.com/'
}
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
这是我的构建gradle文件:
apply plugin: 'com.android.application'
apply plugin: 'io.fabric'
android {
compileSdkVersion 25
buildToolsVersion "25.0.2"
defaultConfig {
applicationId "com.app.company.app"
minSdkVersion 16
targetSdkVersion 25
versionCode 14
versionName "1.4"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
productFlavors {
}
}
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
compile 'com.android.support:appcompat-v7:25.1.0'
compile 'com.android.support:design:25.1.0'
testCompile 'junit:junit:4.12'
compile 'com.google.android.gms:play-services-ads:15.0.0' //Error line
compile 'com.google.firebase:firebase-core:16.0.0'
compile 'com.crashlytics.sdk.android:crashlytics:2.9.3'
}
apply plugin: 'com.google.gms.google-services'
答案 0 :(得分:0)
与说的差不多。您的com.google.android.gms:play-service *依赖项应均为同一版本。
如果我们可以看到代码/您的gradle文件,那可能会有所帮助。〜
它声明您有3个依赖版本... 15.0.0、15.0.1和15.0.4。 它们应该全部相同(例如15.0.04)。
看一下Maven仓库,所有常见版本的最新版本都是15.0.0。
答案 1 :(得分:0)
您需要更新Google服务插件才能使用:
classpath'com.google.gms:google-services:3.3.0' 为了避免这些错误,请同时升级到android studio 3.1
如果您没有使用Android Studio 3.1开发应用,则需要进行升级,以便在IDE中获得正确的版本检查行为。