proguard hell – can’t find referenced class

org.simpleframework.xml.stream.StreamReader in your code refers to javax.xml.stream.events.XMLEvent. The latter class is part of the Java runtime (rt.jar) but not part of the Android runtime (android.jar), so ProGuard warns that something might be broken. If you’re sure that your application works anyway, you can specify

-dontwarn javax.xml.stream.events.**

ProGuard hell?

Leave a Comment