我正在使用Android Studio
将 GCM 集成到一个项目中,因为我将google play服务依赖项添加到top level
gradle,如下面的代码段所示:
dependencies {
classpath 'com.android.tools.build:gradle:1.3.0'
classpath 'com.google.gms:google-services:1.5.0-beta2' //this one
}
但我收到错误Failed to find: com.google.android.gms:play-services-gcm:8.3.0
和Failed to find: com.google.android.gms:play-services-measurement:8.3.0
。我已经从SDK管理器更新了goole play服务并同步了项目。
我在顶级gradle中添加了apply plugin: 'com.google.gms.google-services'
,但仍然显示相同的错误
答案 0 :(得分:1)
您无需参考完整的Google Play服务,只需将GCM参考添加到build.gradel模块即可。
这就是我的样子并且工作正常。
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:22.2.1'
compile 'com.google.android.gms:play-services-gcm:7.8.0'
}
然后确保运行build.grade。自从我加入我的版本后,版本也可能已经改变。
另请注意,您将其放入错误的gradel文件中,使用的模块不是顶级文件
答案 1 :(得分:0)
请确保您已安装最新 Android Studio
以及已更新 Google Play Services
。它也可能是提到错误的原因。此外,您也不需要添加插件行apply plugin: 'com.google.gms.google-services'
。如果没有它,它将编译好。目前,我正在使用 Android Studio 2.1 和 gradle版本2.10 来编译以下gradle配置。
Build.gradle(项目级别)
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.1.0-alpha3'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
classpath 'com.google.gms:google-services:2.0.0-alpha6'
}
}
allprojects {
repositories {
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
Build.gradle(应用模块)
apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion "23.0.1"
defaultConfig {
applicationId "your.package.id.here"
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.google.android.gms:play-services-gcm:8.4.0'
}