android - Error: - Execution failed for task ':app:transformClassesWithJarMergingForDebug' -


i getting error when try run app..below gradle file please me

dependencies {     // compile filetree(include: ['*.jar'], dir: 'libs')     configurations { all*.exclude group: 'com.android.support', module: 'support-v4' }      /*androidtestcompile('com.android.support:multidex-instrumentation:1.0.1') {         exclude group: 'com.android.support', module: 'multidex'     }*/      //compile 'io.jsonwebtoken:jjwt:0.6.0'      compile files('libs/card.io.jar')     compile files('libs/flurryanalytics-6.2.0.jar')     compile files('libs/gradle-wrapper.jar')     compile files('libs/jackson-core-asl-1.9.2.jar')     compile files('libs/jackson-mapper-asl-1.9.2.jar')     compile files('libs/okio-1.6.0.jar')     compile files('libs/org.apache.http.legacy.jar')     compile files('libs/paypalandroidsdk-2.13.1.jar')      compile files('libs/quickblox-android-sdk-chat-2.5.2.jar')     compile files('libs/quickblox-android-sdk-core-2.5.2.jar')     compile files('libs/quickblox-android-sdk-videochat-webrtc-2.5.2.jar')     compile files('libs/quickblox-android-sdk-messages-2.5.2.jar')      // library project jars      compile project(':universalimageloaderlibrary')     compile project(':pk_main')     compile project(':viewpagerindicatorlibrary')     compile project(':week_view_main')     compile project(':swip_cal_main')     compile project(':recyclerview')      compile('com.crashlytics.sdk.android:crashlytics:2.5.5@aar') {         transitive = true;         exclude module: 'support-v4'         exclude group: 'com.android.support', module: 'multidex'     }     compile('com.crashlytics.sdk.android:crashlytics-ndk:1.1.2@aar') {         transitive = true;         exclude module: 'support-v4'         exclude group: 'com.android.support', module: 'multidex'     }         compile 'com.android.support:multidex:1.0.1'     compile 'com.google.android.gms:play-services-gcm:7.3.0'     compile 'com.google.android.gms:play-services-ads:7.3.0'     compile 'com.android.support:appcompat-v7:25.3.1'      compile 'com.android.support.constraint:constraint-layout:1.0.2'     testcompile 'junit:junit:4.12' }  crashlytics {     enablendk true     androidndkout 'src/main/obj'     androidndklibsout 'src/main/libs' } 


Comments

Popular posts from this blog

Is there a better way to structure post methods in Class Based Views -

performance - Why is XCHG reg, reg a 3 micro-op instruction on modern Intel architectures? -

jquery - Responsive Navbar with Sub Navbar -