我在build.gradle文件中添加了以下依赖项来实现GCM:
compile 'com.google.android.gms:play-services:7.8.0'
但是,低于错误:
Error:Execution failed for task ':app:dexDebug'.
我的builg.gradle文件如下:
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.1.1'
//Dependency To hangle OKHTTP Operations
compile 'com.squareup.okhttp:okhttp:2.6.0'
//Dependency To Generate QRcode (Dependency to hangle QRcode libraries)
compile 'com.google.zxing:core:2.2'
compile 'com.embarkmobile:zxing-android-minimal:1.2.1@aar'
compile 'com.google.android.support:wearable:1.1.0'
//Dependency To hangle Scanning of QRCode
compile 'me.dm7.barcodescanner:zxing:1.8.3'
//Dependency To hangle Piccaso library
compile 'com.squareup.picasso:picasso:2.5.0'
//Multipart depency
// compile group: 'org.apache.httpcomponents' , name: 'httpclient-android' , version: '4.3.5.1'
compile('org.apache.httpcomponents:httpmime:4.3') {
exclude module: "httpclient"
}
compile 'com.android.support:cardview-v7:23.0.+'
//To make imageview round cornered
compile 'com.makeramen:roundedimageview:2.2.1'
compile 'com.itextpdf:itextpdf:5.5.8'
compile 'com.google.android.gms:play-services:7.8.0'
}
答案 0 :(得分:0)
查看项目的gradle文件,我认为你面临的问题是没有谷歌强加的方法约束(65536)。
您需要从源代码中删除不需要的库,或者您可以为项目创建MultiDex文件。
要启用multidex文件,请在gradle文件中执行以下更改
defaultConfig {
minSdkVersion 14
targetSdkVersion 14
// Enabling multidex support.
multiDexEnabled true
}
创建扩展Application的应用程序类并放入以下代码
@Override
protected void attachBaseContext(Context base) {
super.attachBaseContext(base);
MultiDex.install(this);
}
您可以参考以下链接以获取更多参考和信息。 http://developer.android.com/tools/building/multidex.html
希望这可以帮助您解决问题。