0
jarからクラスを除外しようとしていますが、動作しません。 私はそれをするために熱いことを教えてください。Androidスタジオでjarクラスを除外する方法
これは私のコードです:
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:23.1.1'
compile ('com.google.android.gms:play-services-gcm:8.3.0') {
exclude module: 'com.google.android.gms.iid/zzb'
}
compile 'org.xwalk:xwalk_core_library:14.43.343.17'
compile 'com.google.code.gson:gson:2.4'
compile 'commons-io:commons-io:2.4'
compile 'com.google.android.gms:play-services-analytics:10.2.1'
compile project(":adjust")
}
これはエラーメッセージです:プレーンのGradleで
Error:Execution failed for task ':app:packageAllReleaseClassesForMultiDex'.
> java.util.zip.ZipException: duplicate entry: com/google/android/gms/iid/zzb$zza$zza.class
特定のクラスを除外する代わりに、 'com.google.android.gms:play-services-gcm:8.3.0'を更新して、同じバージョンの' com.google.android.gms:play- services-analytics:10.2.1' –
ありがとうございました。私はあなたの指示に従いました。そして、「GoogleCloudMessaging」は機能しません。 – user6191333
具体的なエラーはありますか? –