I added this to build.gradle
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.google.android.gms:play-services:6.5.87'
compile 'com.android.support:appcompat-v7:21.0.3'
// ADOBE Creative SDK
compile 'com.adobe.creativesdk.foundation:auth:0.2.10'
compile 'com.adobe.creativesdk.foundation:assets:0.2.10'
compile 'com.adobe.creativesdk:behance:0.2.10'
compile 'com.adobe.creativesdk:image:4.0.0'
// Holo Color Picker
compile 'com.larswerkman:HoloColorPicker:1.4'
// MultiDexApplication
compile 'com.android.support:multidex:1.0.0'
compile files('libs/FlurryAnalytics-5.3.0.jar')
}
It build and sync without any error but when I run I got this error.
app:preDexDebug FAILED
If I remove GooglePlayServices it works fine
compile 'com.google.android.gms:play-services:6.5.87'
Update: I tried many things to solve this problem but still I'm not able to solve this error.