我从
升级了build.gradle文件compile 'com.google.android.gms:play-services:8.4.0'
到
compile 'com.google.android.gms:play-services:9.0.0'
现在我收到了这个我以前没有过的错误。
错误:无法解决:com.google.android.gms:play-services-measurement:9.0.0 here
答案 0 :(得分:246)
发现这可以解决问题。
将项目级gradle com.google.gms:google-services:2.1.0
中的类路径更新为classpath com.google.gms:google-services:3.0.0
答案 1 :(得分:27)
<强> Required: Latest versions of Android Studio and Google Play Services 强>
您可以通过更新顶级 build.gradle和app-level build.gradle 文件,将插件添加到项目中,如下所示:
classpath 'com.google.gms:google-services:3.0.0'
<强>像强>
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
jcenter()
mavenLocal()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.2.0'
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
}
}
allprojects {
repositories {
jcenter()
mavenLocal()
}
}
现在,您需要为Google Play服务添加依赖项。在您应用的 build.gradle 内添加:
compile 'com.google.android.gms:play-services:9.6.1'
<强>最后强>
apply plugin: 'com.android.application'
android {
compileSdkVersion 24
buildToolsVersion "24.0.2"
defaultConfig {
applicationId "// set Yours"
minSdkVersion 15
targetSdkVersion 24
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
packagingOptions {
exclude 'LICENSE.txt'
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.google.android.gms:play-services-gcm:9.6.1'
compile 'com.android.support:appcompat-v7:24.2.0'
}
apply plugin: 'com.google.gms.google-services'
答案 2 :(得分:11)
GCM已rebranded
到Firebase
云消息传递(FCM),如果您想使用com.google.android.gms:play-services:9.0.0
,请阅读本文FCM。
这可能有用,修改您的build.gradle
文件以使用该插件。
buildscript {
dependencies {
// Add this line
classpath 'com.google.gms:google-services:3.0.0'
}
}
答案 3 :(得分:1)
我发现最简单的方法是使用最新版本。
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'
})
//apply plugin: 'com.google.gms.google-services' //Firebase
compile 'com.android.support:appcompat-v7:25.3.1'
compile 'com.android.support:design:25.3.1'
compile 'com.android.support.constraint:constraint-layout:1.0.0-alpha8'
compile 'com.google.firebase:firebase-auth:10.2.6'
compile 'com.google.android.gms:play-services-auth:10.2.6' //10.2.6
compile 'com.google.firebase:firebase-core:10.2.6' // used for FCM
compile 'com.google.firebase:firebase-messaging:10.2.6' // used for FCM
testCompile 'junit:junit:4.12'
// apply plugin: 'com.google.gms.google-services'
}
<强>释强>
apply plugin:'com.google.gms.google-services'//在底部添加。
apply plugin: 'com.google.gms.google-services'
//在底部添加此内容。然后,将这些添加到依赖项中
compile 'com.google.firebase:firebase-auth:10.2.6'
//制作suere这是最新版本。
compile 'com.google.android.gms:play-services-auth:10.2.6'
//10.2.6最新
compile 'com.google.firebase:firebase-core:10.2.6'
//用于FCM
compile 'com.google.firebase:firebase-messaging:10.2.6'
//用于FCM
假设您拥有2017年5月25日最新的firebase-auth 10.2.6,但同时您使用的是play-services-auth:9.0.0或者低于最新版本,那么他们都可以' t建立连接并向您显示错误。
我希望这会有所帮助。
答案 4 :(得分:0)
我通过将Gradle中的字符串更改为
来解决这个棘手的问题compile 'com.google.android.gms:play-services:9.0.0' //or latest version
答案 5 :(得分:0)
将播放服务更改为10.2.1以上的版本时,我的依赖关系开始无法解析。
我发现更改以下maven URL解决了这个问题:
maven { url 'https://raw.githubusercontent.com/onepf/OPF-mvn-repo/master/' }
到
maven { url 'https://github.com/onepf/OPF-mvn-repo/raw/master/' }
URL更改可能会避免在gradle或maven中缓存它并解析它。