To help you, you need to post the log (form LogCat) showing the stack- trace of the VerifyError.
As an example, VerifyErrors can occur when you load a class compiled in Android 1.6 and using/calling 1.6 specific fields/methods and then the class is run in a Android 1.5 environment. I had one such (coding) error in my app, which should run on 1.5 (and up) e.g. i used the BitmapFactory.Options.inDensity field, which works fine on 1.6 (or higher) phones. However, when i ran my app on a 1.5 phone, i got a VerifyError because of the use of use of 'inDensity' in my app's class. On Feb 3, 5:45 am, Martin <[email protected]> wrote: > On my mobile, I do NOT have the VerifyError! This is strange. I just > get the Error-Messages from Flurry-Analytics from people, who > downloaded my game in the market, so I think that these error-messages > come from a specific Android OS? > > What does it mean that some part of a class failed verification? Which > verification? > > Greetings, > Martin > > On 2 Feb., 00:19, fadden <[email protected]> wrote: > > > > > On Jan 30, 3:16 am, Martin <[email protected]> wrote: > > > > I am analyzing my game with flurry-analytics and some people, who play > > > my game, receive the Exception java.lang.VerifyError in my Highscore- > > > Activity. > > > > What do I have to do to solve this error? > > > To figure this out you really need to see the log message associated > > with the failure. > > > Verification errors generally mean that some part of a class failed > > verification, and as a result the entire class has been rejected by > > the VM. It should be 100% repeatable. The logcat output will tell > > you in great detail what went wrong and where. > > > Are the failures always associated with a specific version of the > > Android OS?- Hide quoted text - > > - Show quoted text - -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

