Execution Failed For Task ':app:dexdebug'
This is my gradle file: apply plugin: 'com.android.application' android { compileSdkVersion 20 buildToolsVersion '20.0.0' defaultConfig { applicationId 'com.n
Solution 1:
You should delete
compile files('libs/android-toq-api-1.5.2.jar')
compile files('libs/firebase-client-android-2.0.3.jar')
compile'com.google.android.gms:play-services:5.0.89'
leave only
compilefileTree(dir: 'libs', include: ['*.jar'])
I had the same error and I tried it, after that I had no more error.
Post a Comment for "Execution Failed For Task ':app:dexdebug'"