Skip to content Skip to sidebar Skip to footer

Android - Verifyerror

this is an error I am getting in Android Developer Console from hundreds of my users. I've spend entire day trying to fix the issue in code and it took 9 releases and I am still ge

Solution 1:

You appear to have a Searching inner class of the a.xml.a class. That Searching inner class is referring to something that does not exist on the users' devices, even though it existed in your build target.

You might temporarily drop your build target to be the same as your minSdkVersion (if it isn't there already) and see if anything turns up in this class.

Beyond that, try to find common characteristics of the devices on which the app is failing (e.g., OS version).

Solution 2:

I just wanted to give my solution to this problem, since I haven't really found this anywhere else.

I was able to solve the issue by double-checking the build path of the project. I always get the error when I forget to export external libraries. Hope this helps someone :-)

Solution 3:

I've fixed the issue, had to cut the class to smaller chunks, it was too long.

Solution 4:

I had the same problem after doing the Android ADT and Java updates. Try these steps:

  1. Remove links to your external libraries in your Android project.
  2. Move all your external libraries (including Google Ad libraries) to \libs folder inside your Android project.
  3. Re-link your libraries, that now exist in the Project\libs directory.

Post a Comment for "Android - Verifyerror"