I added ResideMenu to my project using its gradle dependency. but I get this problem:
Error: execution completed for task ': Application: transformClassesWithJarMergingForDebug'.
com.android.build.api.transform.TransformException: java.util.zip.ZipException: duplicate entry: com / nineoldandroids / animation / animator $ AnimatorListener.class
when I checked the external libraries, I found that libraries-2.4.0 and resideMenu-1.6 both contain com.nineoldandroids:

I went through almost all similar problems here in stackoverflow and tried the solutions. Can someone tell me what needs to be done to fix this issue.
Below are the dependencies that I use in my project:
dependencies { compile fileTree(include: ['*.jar'], dir: 'libs') compile 'com.android.support:appcompat-v7:24.2.1' compile 'com.jakewharton:butterknife:7.0.1' compile 'com.squareup.picasso:picasso:2.5.2' compile 'com.pnikosis:materialish-progress:1.7' compile 'com.loopj.android:android-async-http:1.4.9' compile 'com.google.code.gson:gson:2.6.2' compile 'com.wrapp.floatlabelededittext:library:0.0.6' compile 'com.android.support:multidex:1.0.1' compile 'com.specyci:residemenu:1.6+' }
source share