作者热门文章
- r - 以节省内存的方式增长 data.frame
- ruby-on-rails - ruby/ruby on rails 内存泄漏检测
- android - 无法解析导入android.support.v7.app
- UNIX 域套接字与共享内存(映射文件)
我在运行我的应用程序时收到错误 com.android.dex.DexException: Multiple dex files define Lcom/google/android/gms/internal/zzau;
gradle 文件是
app.gradle
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
compile 'com.android.support:support-v4:21.0.3'
compile 'com.android.support:appcompat-v7:21.0.3'
compile 'com.android.support:recyclerview-v7:21.0.0'
compile 'com.android.support:cardview-v7:21.0.0'
compile 'com.google.android.gms:play-services:7.0.+'
compile 'com.android.support:mediarouter-v7:21.0.3'
compile 'com.squareup:otto:1.3.5'
compile 'com.squareup.picasso:picasso:2.3.4'
compile 'com.squareup.okhttp:okhttp:2.2.0'
compile 'com.squareup.okhttp:okhttp-urlconnection:2.2.0'
compile 'com.squareup.retrofit:retrofit:1.9.0'
compile 'com.github.ksoichiro:android-observablescrollview:1.4.0'
compile 'com.astuetz:pagerslidingtabstrip:1.0.1'
compile 'com.facebook.android:facebook-android-sdk:4.1.0'
compile 'com.parse.bolts:bolts-android:1.+'
compile 'com.edmodo:rangebar:1.0.0'
compile 'com.melnykov:floatingactionbutton:1.3.0'
compile project(':library_viewpager')
compile project(':androidHorizontalListView')
compile project(':CastCompanionLibrary')
compile project(':mobihelp_sdk_android_v1.4')
compile fileTree(include: 'Parse-*.jar', dir: 'libs')
compile files('libs/Parse-1.9.2.jar')
compile files('libs/GoogleConversionTrackingSdk-2.2.2.jar')
}
CastCompanionLibrary
dependencies {
compile 'com.android.support:appcompat-v7:22.+'
compile 'com.android.support:mediarouter-v7:22.+'
compile 'com.google.android.gms:play-services-cast:7.5.0'
}
我该如何解决这个问题?我猜这个错误是因为我在模块和应用程序中都使用了谷歌播放服务。但版本不同。这会导致问题吗?
最佳答案
我有类似的问题,你的问题帮助我解决了我的问题,并且可能会帮助你解决你的问题。问题是你已经定义了:
dependencies {
...
compile 'com.google.android.gms:play-services-cast:7.5.0'
}
和
dependencies {
...
compile 'com.google.android.gms:play-services:7.0.+'
...
}
自 google services 7.5.0 起,如果您使用播放服务中的单个模块,则不能同时使用整个播放服务作为依赖项。解决方案是仅选择您需要的服务而不是整个软件包,例如:
而不是
dependencies {
...
compile 'com.google.android.gms:play-services:7.0.+'
...
}
使用
dependencies {
...
compile 'com.google.android.gms:play-services-maps:7.0.+'
compile 'com.google.android.gms:play-services-location:7.0.+'
compile 'com.google.android.gms:play-services-gcm:7.0.+'
...
}
我也不确定,但在两个 gradle 配置中使用相同版本的谷歌服务可能是个好主意。
关于android - 多个dex文件定义Lcom/google/android/gms/internal/zzau,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31224276/
我在运行我的应用程序时收到错误 com.android.dex.DexException: Multiple dex files define Lcom/google/android/gms/inte
我是一名优秀的程序员,十分优秀!