java - duplicate entry: com/google/android/gms/internal/zzfj.class -
please me: here screenshot of error:
error:execution failed task ':app:transformclasseswithjarmergingfordebug'.
com.android.build.api.transform.transformexception: java.util.zip.zipexception: duplicate entry: com/google/android/gms/internal/zzfj.class]1]1
gradle file: https://drive.google.com/open?id=0bxz4qxqmqfmhv05ovfc0qmxutlu
apply plugin: 'com.android.application' android { compilesdkversion 25 buildtoolsversion "25.0.2" uselibrary 'org.apache.http.legacy' defaultconfig { multidexenabled true applicationid "aa.bb" manifestplaceholders = [onesignal_app_id : "xxx", // project number pulled dashboard, local value ignored. onesignal_google_project_number: "remote"] minsdkversion 18 targetsdkversion 25 versioncode 1 versionname "1.0" testinstrumentationrunner "android.support.test.runner.androidjunitrunner" } buildtypes { release { minifyenabled false proguardfiles getdefaultproguardfile('proguard-android.txt'), 'proguard-rules.pro' } } } repositories { mavencentral() maven { url "https://jitpack.io" } maven { url "https://mint.splunk.com/gradle/" } } dependencies { compile filetree(include: ['*.jar'], dir: 'libs') androidtestcompile('com.android.support.test.espresso:espresso-core:2.2.2', { exclude group: 'com.android.support', module: 'support-annotations' }) compile project(':residemenu') compile 'com.google.android.gms:play-services-ads:11.0.4' compile 'com.android.support:appcompat-v7:25.3.1' compile 'com.android.support.constraint:constraint-layout:1.0.2' compile 'com.android.support:design:25.3.1' compile 'com.android.support:cardview-v7:25.3.1' compile 'com.mcxiaoke.volley:library-aar:1.0.0' compile 'com.android.support:recyclerview-v7:25.3.1' compile 'com.onesignal:onesignal:[3.5.3,4.0.0)' compile 'com.squareup.picasso:picasso:2.3.2' compile 'org.apmem.tools:layouts:1.10@aar' compile 'com.github.bumptech.glide:glide:3.7.0' compile 'com.splunk.mint:mint:5.0.0' compile 'com.android.support:multidex:1.0.1' compile 'com.github.siyamed:android-shape-imageview:0.9.+@aar' compile 'com.github.justzak:dilatingdotsprogressbar:1.0.1' compile 'com.kaopiz:kprogresshud:1.1.0' testcompile 'junit:junit:4.12' }

Comments
Post a Comment