I'm developing android app with spring framework in android studio, i've this error
Execution failed for task ':app:packageAllDebugClassesForMultiDex'.
> java.util.zip.ZipException: duplicate entry: org/springframework/beans/BeansException.class
I read some questions/answers but i don't find solution for my problems, example: java.util.zip.ZipException: duplicate entry during packageAllDebugClassesForMultiDex
My build.brandle is
android {
compileSdkVersion 22
buildToolsVersion "22.0.1"
defaultConfig {
applicationId "com.example.simone.oauth"
minSdkVersion 15
targetSdkVersion 22
versionCode 1
versionName "1.0"
multiDexEnabled true
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
packagingOptions {
exclude 'META-INF/ASL2.0'
exclude 'META-INF/LICENSE'
exclude 'META-INF/license.txt'
exclude 'META-INF/NOTICE'
exclude 'META-INF/notice.txt'
}
}
configurations.compile {
exclude module: 'spring-core'
exclude module: 'spring-web'
exclude module: 'commons-logging'
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile ('com.android.support:appcompat-v7:22.2.0')
compile ('org.springframework.android:spring-android-rest-template:1.0.1.RELEASE')
compile 'org.springframework.android:spring-android-auth:1.0.1.RELEASE'
compile 'org.springframework.security:spring-security-crypto:3.1.3.RELEASE'
compile 'org.springframework.social:spring-social-config:1.1.0.RELEASE'
compile 'org.springframework.social:spring-social-core:1.1.2.RELEASE'
compile 'org.springframework.social:spring-social-google:1.0.0.RELEASE'
compile 'org.codehaus.jackson:jackson-mapper-asl:1.9.11'
}
How can i exclude this error?