我正在
将字节码转换为dex时出错:\ n因为: com.android.dex.DexException:多个dex文件定义 LCOM /谷歌/机器人/克/普通/ AccountPicker;
目前看不出原因。 清洁没有帮助。
Project build.gradle:
// 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.3.3'
classpath "io.realm:realm-gradle-plugin:2.0.2"
classpath 'com.google.gms:google-services:3.0.0'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
app build.gradle:
buildscript {
repositories {
maven { url 'https://maven.fabric.io/public' }
}
dependencies {
classpath 'io.fabric.tools:gradle:1.+'
}
}
apply plugin: 'com.android.application'
apply plugin: 'io.fabric'
repositories {
maven { url 'https://maven.fabric.io/public' }
}
apply plugin: 'realm-android'
android {
compileSdkVersion 24
buildToolsVersion '25.0.0'
defaultConfig {
applicationId "a.b.c.d"
minSdkVersion 16
targetSdkVersion 24
versionCode 6
versionName "1.0.5"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
dexOptions {
jumboMode = true
}
}
dependencies {
repositories {
mavenCentral()
maven { url "https://oss.sonatype.org/content/repositories/snapshots/" }
maven { url "https://jitpack.io" }
}
compile fileTree(include: ['*.jar'], dir: 'libs')
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:24.2.0'
compile 'com.android.support:design:24.2.0'
compile 'com.android.support:recyclerview-v7:24.2.0'
compile 'com.android.support:transition:24.2.0'
compile 'uk.co.chrisjenx:calligraphy:2.2.0'
compile 'com.android.support:support-v4:24.2.0'
compile 'com.facebook.android:facebook-android-sdk:4.+'
compile 'com.squareup.retrofit2:retrofit:2.1.0'
compile 'com.squareup.retrofit2:converter-gson:2.1.0'
compile 'com.squareup.okhttp3:logging-interceptor:3.4.1'
compile 'com.android.support:cardview-v7:24.2.0'
compile 'com.nostra13.universalimageloader:universal-image-loader:1.9.5'
compile 'com.android.support:support-v13:24.2.0'
compile 'com.appyvet:materialrangebar:1.3'
compile 'com.google.android.gms:play-services-location:10.0.1'
compile 'com.google.firebase:firebase-messaging:10.0.1'
compile 'org.greenrobot:eventbus:3.0.0'
compile 'com.google.code.gson:gson:2.4'
compile 'de.hdodenhof:circleimageview:2.1.0'
compile 'com.chauthai.swipereveallayout:swipe-reveal-layout:1.4.0'
compile 'com.github.jkwiecien:EasyImage:1.2.3'
compile 'com.amazonaws:aws-android-sdk-core:2.3.0'
compile 'com.amazonaws:aws-android-sdk-s3:2.3.0'
compile 'com.github.chrisbanes:PhotoView:1.3.0'
compile files('libs/signalr-client-sdk.jar')
compile files('libs/signalr-client-sdk-android.jar')
compile 'com.afollestad.material-dialogs:core:0.9.1.0'
compile 'com.google.firebase:firebase-core:10.0.1'
compile 'com.makeramen:roundedimageview:2.3.0'
compile 'com.theartofdev.edmodo:android-image-cropper:2.3.+'
compile 'com.baoyz.pullrefreshlayout:library:1.2.0'
compile 'me.leolin:ShortcutBadger:1.1.13@aar'
compile 'io.reactivex:rxandroid:1.2.1'
compile 'io.reactivex:rxjava:1.2.1'
compile('com.crashlytics.sdk.android:crashlytics:2.6.5@aar') {
transitive = true;
}
compile files('libs/google-play-services.jar')
}
apply plugin: 'com.google.gms.google-services'
答案 0 :(得分:1)
将字节码转换为dex时出错:\ n因为: com.android.dex.DexException:多个dex文件定义 LCOM /谷歌/机器人/克/普通/ AccountPicker;
<强>问题强>
相同 com.google.android.gms:play-services
<强>解决方案强>
从 build.gradle &amp;中删除 google-play-services
本地lib文件夹。
compile files('libs/google-play-services.jar')
之后 Clean-Rebuild-Run
。
答案 1 :(得分:0)
在app build.gradle中尝试multiDexEnabled true
答案 2 :(得分:0)
您要添加两次相同的课程。
删除此行:
compile files('libs/google-play-services.jar')
此外,您必须删除文件libs/google-play-services.jar
,因为您使用的是compile fileTree(include: ['*.jar'], dir: 'libs')