Not doing any instrumentation tests. The superclass of MusicMapActivity is com.google.android.maps.MapActivity, so how could this class not be found? I do have "<uses-library android:name="com.google.android.maps" />" in my Manifest under my <application/> tag.
Thanks, -Zach On May 8, 4:15 pm, fadden <[email protected]> wrote: > On May 7, 12:52 pm, Zach Hobbs <[email protected]> wrote: > > > 05-07 15:44:32.024: WARN/dalvikvm(16630): Unable to resolve superclass > > of Lcom/tunewiki/lyricplayer/android/community/maps/MusicMapActivity; > > (210) > > 05-07 15:44:32.024: WARN/dalvikvm(16630): Link of class 'Lcom/tunewiki/ > > lyricplayer/android/community/maps/MusicMapActivity;' failed > > The superclass of MusicMapActivity couldn't be found. This prevented > the class from being loaded. Then, when VideoPlayer.launchMusicApp() > tried to refer to it, the verifier got irked: > > > 05-07 15:44:32.024: ERROR/dalvikvm(16630): Could not find class > > 'com.tunewiki.lyricplayer.android.community.maps.MusicMapActivity', > > referenced from method > > com.tunewiki.lyricplayer.android.player.VideoPlayer.launchMusicMap > > So your basic problem isn't aVerifyError, but rather that the > superclass of your MusicMapActivity wasn't available from the class > loader. I don't know why this would vary from run to run. I've heard > of some strange things happening with instrumentation tests; are you > using those here? --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---

