Skip to content Skip to sidebar Skip to footer

Class Rejected In Android Application

The following is that LogCat output for the runtime exception my Android application is displaying, first the wranings generated followed by the stack trace when the application ex

Solution 1:

If you search for VerifyError and Android here in StackOverflow you'll find some good posts that might help you get started like this: Android java.lang.VerifyError? I suspect you will find that as the high (but not accepted) answer suggests, you're using some method in Java that isn't supported for your API level.

Solution 2:

Try using a Oracle JVM instead of OpenJDK's ... that solved the mystery issue for me.

Post a Comment for "Class Rejected In Android Application"