Similar issues are discussed here at Stackoverflow:
Duplicate definition of Android Proguard
Duplicate resources when using ProGuard and Android app
Android - Proguard zip protection re-write error
In your case, I think the first one can help you ...
If this does not help, we must see where this problem comes from. I even have some applications in the playstore with third-party libraries, and I had no problems with proguard. Here are my proguard.cfg settings from one of my third party lib and google lvl licensed applications:
-optimizationpasses 5 -dontusemixedcaseclassnames -dontskipnonpubliclibraryclasses -dontpreverify -dontwarn **CompatHoneycomb -keep class android.support.v4.** { *; } -dontwarn org.apache.** -verbose -dontoptimize -dontshrink -optimizations !code/simplification/arithmetic,!field/*,!class/merging/* -keepattributes *Annotation* -dontwarn com.google.ads.**
well, you donβt need all of them, it depends on what you have implemented or which third-party libraries you use. Thus, I could not see your application structure and did not receive any code, this exceeded the amount. I suggest you just check one by one.
source share