Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.
10-23 08:07:24.488: E/AndroidRuntime(399): FATAL EXCEPTION: main
10-23 08:07:24.488: E/AndroidRuntime(399): java.lang.RuntimeException: Unable to instantiate activity ComponentInfo{com.example.tryagain/com.example.tryagain.MainActivity}: java.lang.ClassNotFoundException: com.example.tryagain.MainActivity in loader dalvik.system.PathClassLoader[/data/app/com.example.tryagain-2.apk]
10-23 08:07:24.488: E/AndroidRuntime(399):  at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:1569)
10-23 08:07:24.488: E/AndroidRuntime(399):  at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:1663)
10-23 08:07:24.488: E/AndroidRuntime(399):  at android.app.ActivityThread.access$1500(ActivityThread.java:117)
10-23 08:07:24.488: E/AndroidRuntime(399):  at android.app.ActivityThread$H.handleMessage(ActivityThread.java:931)
10-23 08:07:24.488: E/AndroidRuntime(399):  at android.os.Handler.dispatchMessage(Handler.java:99)
10-23 08:07:24.488: E/AndroidRuntime(399):  at android.os.Looper.loop(Looper.java:123)
10-23 08:07:24.488: E/AndroidRuntime(399):  at android.app.ActivityThread.main(ActivityThread.java:3683)
10-23 08:07:24.488: E/AndroidRuntime(399):  at java.lang.reflect.Method.invokeNative(Native Method)
10-23 08:07:24.488: E/AndroidRuntime(399):  at java.lang.reflect.Method.invoke(Method.java:507)
10-23 08:07:24.488: E/AndroidRuntime(399):  at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:839)
10-23 08:07:24.488: E/AndroidRuntime(399):  at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:597)
10-23 08:07:24.488: E/AndroidRuntime(399):  at dalvik.system.NativeStart.main(Native Method)
10-23 08:07:24.488: E/AndroidRuntime(399): Caused by: java.lang.ClassNotFoundException: com.example.tryagain.MainActivity in loader dalvik.system.PathClassLoader[/data/app/com.example.tryagain-2.apk]
10-23 08:07:24.488: E/AndroidRuntime(399):  at dalvik.system.PathClassLoader.findClass(PathClassLoader.java:240)
10-23 08:07:24.488: E/AndroidRuntime(399):  at java.lang.ClassLoader.loadClass(ClassLoader.java:551)
10-23 08:07:24.488: E/AndroidRuntime(399):  at java.lang.ClassLoader.loadClass(ClassLoader.java:511)
10-23 08:07:24.488: E/AndroidRuntime(399):  at android.app.Instrumentation.newActivity(Instrumentation.java:1021)
10-23 08:07:24.488: E/AndroidRuntime(399):  at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:1561)
10-23 08:07:24.488: E/AndroidRuntime(399):  ... 11 more

whats the problem? thanks!

share|improve this question
"java.lang.ClassNotFoundException: com.example.tryagain.MainActivity" Check if that class exists. – Thilo Oct 23 '12 at 8:15
1  
The problem is that you're getting an exception. Another problem is that you fail to explain how or when you encountered this exception. Merely posting the stack-trace is not a good idea. – Sujay Oct 23 '12 at 8:16
In your application. ;-) Please read FAQ – Vash Oct 23 '12 at 8:20
check the package path in your class and manifest file. – goodm Oct 23 '12 at 8:22

closed as not a real question by Sujay, Vash, RvdK, Marcin Orlowski, dave.c Oct 23 '12 at 8:54

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

1) Check the package name given in AndroidManifest.xml

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.tryagain">

2) Have you added your activity information in AndroidManifest.xml?

<application android:icon="@drawable/icon" android:label="@string/app_name">
  <activity android:name=".MainActivity" android:label="@string/app_name"></activity>
   .......
</application>
share|improve this answer
ys, i have..still not fixed – facebook-651444261 Oct 24 '12 at 14:15

Not the answer you're looking for? Browse other questions tagged or ask your own question.