"asm-4.0.jar", "org.objectweb.asm", if this .jar is included, I get this error, while building:
AGPBI: {"kind":"error","text":"Uncaught translation error: com.android.dx.cf.code.SimException: com.android.dx.rop.cst.CstMethodRef cannot be cast to com.android.dx.rop.cst.CstInterfaceMethodRef","sources":[{}]}
AGPBI: {"kind":"error","text":"Uncaught translation error: com.android.dx.cf.code.SimException: com.android.dx.rop.cst.CstMethodRef cannot be cast to com.android.dx.rop.cst.CstInterfaceMethodRef","sources":[{}]}
AGPBI: {"kind":"error","text":"Uncaught translation error: com.android.dx.cf.code.SimException: com.android.dx.rop.cst.CstMethodRef cannot be cast to com.android.dx.rop.cst.CstInterfaceMethodRef","sources":[{}]}
AGPBI: {"kind":"error","text":"Uncaught translation error: com.android.dx.cf.code.SimException: com.android.dx.rop.cst.CstMethodRef cannot be cast to com.android.dx.rop.cst.CstInterfaceMethodRef","sources":[{}]}
AGPBI: {"kind":"error","text":"4 errors; aborting","sources":[{}]}
Some part from Proguard config:
#-libraryjars libs/asm-4.0.jar
-keep class !org.objectweb.asm.** { *; }
-dontwarn org.objectweb.asm.**
Full proguard config: http://pastebin.com/mxXK4WvY
-dontobfuscate
This line makes proguard work, but I need obfuscation.
What should I do? This jar is needed for Kryonet, my whole game is built on it.