I have a XTrackerMap class that extends com.google.android.maps.MapActivity. The application runs fine on the HTC Hero device when connected via USB and uploaded via eclipse. If I restart the phone and start the same application from the list of apps on the phone, I get the following error; and subsequent application crash.
11-24 16:17:12.774: WARN/dalvikvm(515): Unable to resolve superclass of Lcom/gizmo/tracker/XTrackerMap; (57) 11-24 16:17:12.774: WARN/dalvikvm(515): Link of class 'Lcom/gizmo/ tracker/XTrackerMap;' failed 11-24 16:17:12.774: ERROR/dalvikvm(515): Could not find class 'com.gizmo.tracker.XTrackerMap', referenced from method com.gizmo.tracker.TrackingActivity.initControls 11-24 16:17:12.774: WARN/dalvikvm(515): VFY: unable to resolve const- class 89 (Lcom/gizmo/tracker/XTrackerMap;) in Lcom/gizmo/tracker/ TrackingActivity; 11-24 16:17:12.774: WARN/dalvikvm(515): VFY: rejecting opcode 0x1c at 0x0082 11-24 16:17:12.774: WARN/dalvikvm(515): VFY: rejected Lcom/gizmo/ tracker/TrackingActivity;.initControls ()V 11-24 16:17:12.774: WARN/dalvikvm(515): Verifier rejected class Lcom/ gizmo/tracker/TrackingActivity; 11-24 16:17:12.774: WARN/dalvikvm(515): Class init failed in newInstance call (Lcom/gizmo/tracker/TrackingActivity;) 11-24 16:17:12.774: DEBUG/AndroidRuntime(515): Shutting down VM And yes, I do have this entry in the manifest file: <uses-library android:name="com.google.android.maps" /> Why does this work only when launched via eclipse and not in standalone phone mode? The launch class is TrackingActivity; and the initControls method of TrackingActiviy has the following line: trackMapIntent = new Intent(this, XTrackerMap.class); <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.gizmo.tracker" android:versionCode="1" android:versionName="1.1"> <application android:icon="@drawable/icon" android:label="@string/ app_name"> <uses-library android:name="com.google.android.maps" /> ... -- You received this message because you are subscribed to the Google Groups "Android Beginners" 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-beginners?hl=en

