dot*_*hem 197 android google-play-services
错误:
任务':app:processDebugGoogleServices'的执行失败.请通过更新google-services插件的版本(此处提供有关最新版本的信息)或将com.google.android.gms的版本更新为8.3.0来修复版本冲突 .
我已经完成了我发现的所有事情.
dependencies {
// This does not break the build when Android Studio is missing the JRebel for Android plugin.
classpath 'com.zeroturnaround.jrebel.android:jr-android-gradle:1.0.+'
classpath 'com.android.tools.build:gradle:2.0.0-alpha3'
classpath 'com.google.gms:google-services:2.0.0-alpha3'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
Run Code Online (Sandbox Code Playgroud)
并在应用程序gradle中
compile 'com.google.android.gms:play-services:8.4.0'
Run Code Online (Sandbox Code Playgroud)
sar*_*pta 336
将这些依赖项用于项目build.gradle
dependencies {
classpath 'com.android.tools.build:gradle:2.0.0-alpha3'
classpath 'com.google.gms:google-services:2.0.0-alpha3'
}
Run Code Online (Sandbox Code Playgroud)
并将其放在app级build.gradle文件的末尾(在依赖项之后).
apply plugin: 'com.google.gms.google-services'
Run Code Online (Sandbox Code Playgroud)
我不知道为什么把它放在最后(而不是在开头)解决了错误.
编辑5/1/2016
好的...所以试图结束你们所遇到的所有问题我的解决方案
这是我最后的应用程序级别
apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion "23.0.2"
defaultConfig {
applicationId "your-app-name"
minSdkVersion 16
targetSdkVersion 23
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
repositories {
jcenter()
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.1.1'
compile 'com.google.android.gms:play-services:8.4.0'
compile 'com.android.support:design:23.1.1'
compile 'com.mcxiaoke.volley:library:1.0.6@aar'
}
apply plugin: 'com.google.gms.google-services'
Run Code Online (Sandbox Code Playgroud)
这是我最后的项目级别
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.0.0-alpha3'
classpath 'com.google.gms:google-services:2.0.0-alpha3'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
jcenter()
}
}
Run Code Online (Sandbox Code Playgroud)
将其与您自己的gradle文件进行比较,并添加或修改任何与我编写的值不同的值.
小智 63
在应用程序的模块(build.gradle)中
搬家:
apply plugin: 'com.google.gms.google-services'
Run Code Online (Sandbox Code Playgroud)
到最后一行解决了这个问题.
小智 15
请执行下列操作:
将以下内容放在build.gradle中(应用程序级gradle文件)
dependencies {
classpath 'com.android.tools.build:gradle:2.0.0-beta2'
classpath 'com.google.gms:google-services:2.0.0-beta2'
}
Run Code Online (Sandbox Code Playgroud)请在这里查看最新版本,因为这个不断变化.
插件太旧,请更新到更新版本,或设置ANDROID_DAILY_OVERRIDE环境变量
将以下行放在build.gradle的底部(模块级gradle文件)
apply plugin: 'com.google.gms.google-services
Run Code Online (Sandbox Code Playgroud)这似乎是使用版本3.0.0的Google服务插件(以及Google Play服务库的9.0.0版本)修复的.所以这个
顶级build.gradle
dependencies {
classpath 'com.google.gms:google-services:3.0.0'
}
Run Code Online (Sandbox Code Playgroud)
app level build.gradle
apply plugin: 'com.google.gms.google-services'
dependencies {
compile 'com.google.android.gms:play-services:9.0.0
}
Run Code Online (Sandbox Code Playgroud)
快速注意:如果要更新到google-services
插件的3.0.0版,请确保重新生成配置文件,因为它有新字段(在此处说明).
编辑(2016-06-20):虽然这确实编译并运行,但我注意到在构建日志中它确实指定将插件放在文件的底部,否则将使用默认(9.0.0).因此,在上面的情况下,这不是问题,因为我使用的是9.0.0版,但在更新依赖项时这可能会有问题.这是日志:
google-services plugin could not detect any version for com.google.android.gms or com.google.firebase, default version: 9.0.0 will be used.
please apply google-services plugin at the bottom of the build file.
对我来说只有这个:
顶层.
dependencies {
classpath 'com.android.tools.build:gradle:2.1.0'
classpath 'com.google.gms:google-services:3.0.0'
}
Run Code Online (Sandbox Code Playgroud)
应用级别:
dependencies {
compile 'com.google.android.gms:play-services-gcm:9.0.1'
compile 'com.google.android.gms:play-services-location:9.0.1'
}
// should be at the bottom
apply plugin: 'com.google.gms.google-services'
Run Code Online (Sandbox Code Playgroud)
归档时间: |
|
查看次数: |
87149 次 |
最近记录: |