When I updated my Android Studio 3.0, I get an error
unable to merge with dex.
Then I added mutiDexEnabled true
and also added com.android.support:multidex:1.0.1
in build.gradle
.
Then I'm getting the error below:
Error:Execution failed for task ':app:transformClassesWithMultidexlistForDebug'. java.io.IOException: Can't write [C:\Users\user\AndroidStudioProjects\KnightFox-IN BUDGET\app\build\intermediates\multi-dex\debug\componentClasses.jar] (Can't read [C:\Users\user.gradle\caches\transforms-1\files-1.1\play-services-ads-lite-11.4.2.aar\9a54afd7907fee993ecc421b66ed4228\jars\classes.jar(;;;;;;**.class)] (Duplicate zip entry [classes.jar:com/google/ads/mediation/MediationServerParameters$Parameter.class]))
build.gradle
apply plugin: 'com.android.application'
android {
compileSdkVersion 26
buildToolsVersion '26.0.2'
defaultConfig {
applicationId "com.copperseeds.android.kunjachamman.applicationin.budget"
minSdkVersion 14
targetSdkVersion 26
multiDexEnabled true
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-project.txt'
}
}
}
dependencies {
implementation files('libs/ksoap2-android-assembly-2.6.0-jar-with-dependencies.jar')
implementation fileTree(include: ['*.jar'], dir: 'libs')
androidTestImplementation('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
implementation 'com.android.support:appcompat-v7:26.0.0'
implementation 'com.android.support:support-annotations:26.0.0'
implementation 'com.android.support:support-v4:26.0.0'
implementation 'com.github.navasmdc:MaterialDesign:1.5@aar'
testImplementation 'junit:junit:4.12'
implementation project(':ORMDroid')
implementation project(':FacebookSDK')
implementation project(':standOut')
implementation files('libs/gcm.jar')
implementation files('libs/google-play-services.jar')
implementation 'com.google.android.gms:play-services:+'
compile 'com.android.support:multidex:1.0.1'
}