无法在 Android Studio(版本 1.3.1)中添加 GooglePlayServices (GCM)
Not able to add GooglePlayServices (GCM) in Android Studio (Version 1.3.1)
我正在尝试在我的应用程序中为 GCM 添加 google 播放服务,但无法实现。
- 出了什么问题:
任务“:app:dexDebug”执行失败。
com.android.ide.common.process.ProcessException: org.gradle.process.internal.ExecException: Process 'command 'C:\Program Files\Java\jdk1.7.0_79\bin\java.exe'' finished with non-zero exit value 2
如果我去掉compile 'com.google.android.gms:play-services-gcm:8.1.0'那么构建就没有问题了。我哪里出错了?
Build.gradle 文件:
apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion "23.0.1"
defaultConfig {
applicationId "xxx.yyy.zzz"
minSdkVersion 14
targetSdkVersion 23
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
packagingOptions {
exclude 'META-INF/DEPENDENCIES'
exclude 'META-INF/NOTICE'
exclude 'META-INF/NOTICE.txt'
exclude 'META-INF/LICENSE.txt'
exclude 'META-INF/LICENSE'
}
dexOptions {
jumboMode true
incremental true
preDexLibraries false
javaMaxHeapSize "4g"
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.google.code.gson:gson:2.3'
compile 'com.github.bumptech.glide:glide:3.5.2'
compile 'com.google.android:multidex:0.1'
compile 'com.edmodo:cropper:1.0.1'
compile 'com.google.android.gms:play-services-analytics:7.3.0'
compile 'com.loopj.android:android-async-http:1.4.5'
compile 'com.google.android.gms:play-services-gcm:8.1.0'
compile 'com.android.support:appcompat-v7:23.1.0'
compile 'com.jakewharton:butterknife:6.1.0'
compile 'com.afollestad:material-dialogs:0.7.4.2'
}
添加依赖项后,尝试删除build/
和app/build/
文件夹,然后重新构建项目。
如果它不能解决您的问题,您将需要提供完整的 gradle 日志。
您可能在 sdk mananger
中使用了过时的支持存储库
试试这个:
右键单击 app 并在 Dependencies 选项卡上打开模块设置
单击 '+' 图标并添加 com.google.android.gms:play-services 并单击搜索图标并添加该依赖项应根据您的存储库弹出正确的版本。
编辑:
我正在尝试在我的应用程序中为 GCM 添加 google 播放服务,但无法实现。
- 出了什么问题: 任务“:app:dexDebug”执行失败。
com.android.ide.common.process.ProcessException: org.gradle.process.internal.ExecException: Process 'command 'C:\Program Files\Java\jdk1.7.0_79\bin\java.exe'' finished with non-zero exit value 2
如果我去掉compile 'com.google.android.gms:play-services-gcm:8.1.0'那么构建就没有问题了。我哪里出错了?
Build.gradle 文件:
apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion "23.0.1"
defaultConfig {
applicationId "xxx.yyy.zzz"
minSdkVersion 14
targetSdkVersion 23
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
packagingOptions {
exclude 'META-INF/DEPENDENCIES'
exclude 'META-INF/NOTICE'
exclude 'META-INF/NOTICE.txt'
exclude 'META-INF/LICENSE.txt'
exclude 'META-INF/LICENSE'
}
dexOptions {
jumboMode true
incremental true
preDexLibraries false
javaMaxHeapSize "4g"
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.google.code.gson:gson:2.3'
compile 'com.github.bumptech.glide:glide:3.5.2'
compile 'com.google.android:multidex:0.1'
compile 'com.edmodo:cropper:1.0.1'
compile 'com.google.android.gms:play-services-analytics:7.3.0'
compile 'com.loopj.android:android-async-http:1.4.5'
compile 'com.google.android.gms:play-services-gcm:8.1.0'
compile 'com.android.support:appcompat-v7:23.1.0'
compile 'com.jakewharton:butterknife:6.1.0'
compile 'com.afollestad:material-dialogs:0.7.4.2'
}
添加依赖项后,尝试删除build/
和app/build/
文件夹,然后重新构建项目。
如果它不能解决您的问题,您将需要提供完整的 gradle 日志。
您可能在 sdk mananger
中使用了过时的支持存储库试试这个:
右键单击 app 并在 Dependencies 选项卡上打开模块设置
单击 '+' 图标并添加 com.google.android.gms:play-services 并单击搜索图标并添加该依赖项应根据您的存储库弹出正确的版本。
编辑: