I've seen Dalvik give a Verify error in cases where I'd expect a NoSuchMethodError. That is, it calls a method that was there when the code was compiled, but at runtime, the version of the class it found did not have that method.
So I'd check to make sure that the code you're compiling is being compiled against the exact same version of the code that it's getting to use at runtime. Running under the debugger and breaking on exceptions may give you more clues than logcat. On Mar 4, 8:55 pm, grace <[email protected]> wrote: > Hi, > > i have two diff applications in two diff packages. > i am trying to use the functions of one package from another which > crashes my application.this shows me with java.lang.VerifyError in the > adb logcat. > there is no problem while compiling my app..but its not able to run. > > can somebody tell me a way out to do this?? > > Thanks in advance, > > Grace. -- 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

