Java.lang.verifyerror how do I fix or even find out the root cause?

前端 未结 4 1214
走了就别回头了
走了就别回头了 2020-12-03 22:26

\"enterCurrently going through a nightmare attempting to fix a java.lang.verifyerror, was havi

4条回答
  •  情书的邮戳
    2020-12-03 23:32

    So, as far as I'm aware, Android uses a different class file format and if you are running a third party JAR/Java files, you have to first run them through the dx tool that ships with the Android SDK.

    Other possible reason may probably be some method in a java.lang class that is not supported on the Android SDK level you are using (for instance, String.isEmpty()).

提交回复
热议问题