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.

Most of the devices can run my app but I got this error report :

java.lang.RuntimeException: Unable to instantiate activity ComponentInfo{com.company.app/com.company.app.MainActivity}: java.lang.ClassNotFoundException: com.company.app.MainActivity in loader dalvik.system.PathClassLoader[/mnt/asec/com.company.app-1/pkg.apk]
at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2755)
at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2854)
at android.app.ActivityThread.access$2300(ActivityThread.java:136)
at android.app.ActivityThread$H.handleMessage(ActivityThread.java:2179)
at android.os.Handler.dispatchMessage(Handler.java:99)
at android.os.Looper.loop(Looper.java:143)
at android.app.ActivityThread.main(ActivityThread.java:5068)
at java.lang.reflect.Method.invokeNative(Native Method)
at java.lang.reflect.Method.invoke(Method.java:521)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:858)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:616)
at dalvik.system.NativeStart.main(Native Method)
Caused by: java.lang.ClassNotFoundException: com.company.app.MainActivity in loader dalvik.system.PathClassLoader[/mnt/asec/com.company.app-1/pkg.apk]
at dalvik.system.PathClassLoader.findClass(PathClassLoader.java:243)
at java.lang.ClassLoader.loadClass(ClassLoader.java:573)
at java.lang.ClassLoader.loadClass(ClassLoader.java:532)
at android.app.Instrumentation.newActivity(Instrumentation.java:1034)
at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2747)
... 11 more

I found there is a related answer: ClassNotFoundException Android

but the question is, my exception occurs before any line of code i write, so how can I ensure the class loader is loaded?

share|improve this question
Have you defined your Activity in Menifest file? – Sandy May 27 '11 at 6:15
The SD card is removed or mounted to a PC stackoverflow.com/questions/4820554/… stackoverflow.com/questions/5483947/… – Dante Jul 22 '11 at 8:56
The SD card is removed or mounted to a PC stackoverflow.com/questions/4820554/… stackoverflow.com/questions/5483947/… – Dante Jul 22 '11 at 8:57
Did you find the correct answer eventually? – russoue Jan 14 at 6:18

3 Answers

I get this error when my class isn't correctly defined in the manifest, typically because I haven't put in the correct name space as in:

    <activity android:name="com.company.project.main.MyMainActivity" ...>

as opposed to

    <activity android:name="MyMainActivity" ...>

Not sure why it would work for you on some devices and not others though.

share|improve this answer
1  
<activity android:name=".MyMainActivity" ...>, it is correct way to define – Sandy May 27 '11 at 6:14
good point. Although in this example if the project is com.company.project, I think it would have to be ".main.MyMainActivity"? – fredw May 27 '11 at 6:25
yes, before Activity, it takes package name, Package name is already defined in menifest – Sandy May 27 '11 at 6:31
I think fredw is trying to solve my problem but I cannot verify it so soon, as the problem only occurs at customer side. – Kay Chan May 28 '11 at 8:11
I have tried that already but the problem still occurs :/ – Kay Chan Jun 8 '11 at 3:08

I had exactly the same problem. Suddenly my app stopped working. I didint make any change to manifest, but with some accident there was missing first row:

<?xml version="1.0" encoding="utf-8"?>

This caused ClassNotFoundException for launcher activity. I was struggling with that for few hours and I overlooked this every time I was checking manifest for possible mistake.

Strange thing happened after I have deleted this row again. Suprise, suprise app was still working. (and I didnt forget to rebuild app)

Hope this help someone to save few hours.

share|improve this answer

Please close your eclipse and open. Clean your project and do a refresh. Then run and see.

share|improve this answer
the problem only occurs at customer side. :/ – Kay Chan May 28 '11 at 8:11

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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