On Jul 20, 3:37 am, cindy <[email protected]> wrote: > The exception show in DDMS is : java.lang.verificatin error.
In my experience, verification errors are problems with Android version; you're trying to use a feature introduced in a later SDK version than the device is running. An example would be running an app which uses multitouch (introduced in Android 2.x) on a 1.x device like a G1. To find these at compile time, rather than simply getting this runtime error, make sure the android:minSdkVersion value in your manifest's <uses-sdk /> tag is set to the version you really want to target. To intelligently support the features of multiple versions, I'd recommend you read the recent Android dev blog post on the subject. String -- 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

