Android App Instantly Crashes
11-12 13:31:44.988: D/AndroidRuntime(13055): Shutting down VM 11-12 13:31:44.988: W/dalvikvm(13055): threadid=1: thread exiting with uncaught exception (group=0x4001d570) 11-12
Solution 1:
This is your error:
11-12 13:31:45.008: E/AndroidRuntime(13055): Caused by: java.lang.ClassNotFoundException: com.example.StickmanRevolution.activity.MainActivity in loader dalvik.system.PathClassLoader[/data/app/com.example.StickmanRevolution-2.apk]
Android cannot find the class com.example.StickmanRevolution.activity.MainActivity
. Make sure that your classes are in the correct package, and that the name matches exactly (including case).
Post a Comment for "Android App Instantly Crashes"