On Oct 29, 7:26 pm, jv <[EMAIL PROTECTED]> wrote: > Hi, I was wondering if a tool exists to manually verify whether or not > a certain library, possibly in the jar format is compatible with > Android. I always end up getting Verify Errors in the middle of > development while using certain libraries and quite unsure which > portions of the libraries are causing the errors. Thanks.
The most common cause of a verifier complaint is the absence of a dependent class. If class A needs class B, and class B doesn't exist, you're going to have trouble using class A. The log file, viewable from the Eclipse plugin, stand-alone DDMS, or "adb logcat", will show detailed information. --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---

