Android studio:java.util.zip.ZipException: duplicate entry -


i´m working on project , found error:

error:execution failed task ':app:transformclasseswithjarmergingfordebug'. com.android.build.api.transform.transformexception: java.util.zip.zipexception: duplicate entry: lejos/internal/io/package-info.class

i tried gradlew clean, didn´t work. here app.build.gradle:

apply plugin: 'com.android.application'  android { compilesdkversion 23 buildtoolsversion "23.0.2"  defaultconfig {     applicationid "com.example.kony.ev3remotecontrol"     minsdkversion 8     targetsdkversion 23     versioncode 1     versionname "1.0"     multidexenabled true } buildtypes {     release {         minifyenabled false         proguardfiles getdefaultproguardfile('proguard-android.txt'), 'proguard-rules.pro'     } }    }  dependencies {    compile filetree(dir: 'libs', include: ['*.jar'])    testcompile 'junit:junit:4.12'    compile 'com.android.support:appcompat-v7:23.1.1'    compile 'com.android.support:multidex:1.0.0' } 


Comments

Popular posts from this blog

authentication - Mongodb revoke acccess to connect test database -

r - Update two sets of radiobuttons reactively - shiny -

ios - Realm over CoreData should I use NSFetchedResultController or a Dictionary? -