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 a VerifyError, 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 -~----------~----~----~----~------~----~------~--~---

