fxthomas / android-scratch

Simple demo app for SBT-Android
6 stars 3 forks source link

Error:Execution failed for task ':app:transformClassesWithDexForDebug'. > com.android.build.api.transform.TransformException: com.android.ide.common.process.ProcessException: java.util.concurrent.ExecutionException: com.android.dex.DexException: Multiple dex files define Lcom/nineoldandroids/animation/Animator$AnimatorListener; #6

Open hichemcesar24 opened 7 years ago

hichemcesar24 commented 7 years ago

Run build apk this error resolve this my gradle: apply plugin: 'com.android.application'

android { compileSdkVersion 26 buildToolsVersion "26.0.0"

defaultConfig {
    applicationId "com.xxx.xxx.xxx"
    minSdkVersion 15
    targetSdkVersion 26
    versionCode 1
    versionName "1.0"
    multiDexEnabled true
    testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
    release {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
    }
}

}

dependencies { compile fileTree(dir: 'libs', include: ['*.jar']) compile project(':ResideMenu')

androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
    exclude group: 'com.android.support', module: 'support-annotations'
})
compile ('com.specyci:residemenu:1.6+') {
    exclude group: 'com.nineoldandroids', module: 'library'
}
compile 'com.android.support:appcompat-v7:26.+'
compile 'com.android.support.constraint:constraint-layout:1.0.0-alpha7'
compile 'com.android.support:support-v4:26.+'
compile 'com.github.ganfra:material-spinner:1.1.1'
compile 'com.facebook.android:facebook-android-sdk:4.0.0'
compile 'com.twitter.sdk.android:twitter:3.0.0'
compile 'com.android.support:design:26.+'
compile 'com.android.support:recyclerview-v7:26.+'
compile 'com.android.support:cardview-v7:26.+'
compile 'com.github.bumptech.glide:glide:3.7.0'
compile 'com.squareup.retrofit2:retrofit:2.1.0'
compile 'com.mcxiaoke.volley:library:1.0.18'
compile 'com.squareup.picasso:picasso:2.5.2'
compile 'com.google.android.gms:play-services-ads:11.0.2'
compile 'org.sufficientlysecure:html-textview:3.2'

testCompile 'junit:junit:4.12'

}