Android java.lang.NoClassDefFoundError
Asked Answered
P

8

54

I have an Android project in eclipse IDE which was working. After some imports and tests, I get the error: java.lang.NoClassDefFoundError.

In my project I have two packages: the main one and the second one with some classes.

When I try to instantiate an object from the second package class in the main activity class, I am getting this error.

Here is the logcat:

FATAL EXCEPTION: main
java.lang.NoClassDefFoundError: com.neurospeech.wsclient.MDPIforEditorialBoard
at milos.mdpi.Journals.<init>(Journals.java:41)
at java.lang.Class.newInstanceImpl(Native Method)
at java.lang.Class.newInstance(Class.java:1409)
at android.app.Instrumentation.newActivity(Instrumentation.java:1040)
at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:1777)
at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:1893)
at android.app.ActivityThread.access$1500(ActivityThread.java:135)
at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1054)
at android.os.Handler.dispatchMessage(Handler.java:99)
at android.os.Looper.loop(Looper.java:150)
at android.app.ActivityThread.main(ActivityThread.java:4389)
at java.lang.reflect.Method.invokeNative(Native Method)
at java.lang.reflect.Method.invoke(Method.java:507)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:849)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:607)
at dalvik.system.NativeStart.main(Native Method)

Found the solution to my problem:

The solution can be found here: http://android.foxykeep.com/dev/how-to-fix-the-classdefnotfounderror-with-adt-17

Prolific answered 26/3, 2012 at 11:7 Comment(3)
Did you upgrade your android sdk to 17 ?Joyous
Yes @Pleerock, the Minsky's answer resolved the problem. Thank you very much.Prolific
Check this Q&A. Worked for me! #16642239Couching
F
55

Did you recently updated your eclipse android plugin (adt r17)? Then the following link might help:

How to fix the classdefnotfounderror with adt-17

Update: One year has passed since the question arose. I will keep the link, because even in 2013 it seem to help some people to solve the problem. But please take care what you are doing, see Erics comment below. Current ADT-Version is 22, I recommend using the most current version.

Fortson answered 26/3, 2012 at 11:14 Comment(4)
This worked for me also, but I had to temporarily switching the project target (from 2.2 -> 4.0.3 in my case) to get it to take effect. Possibly this was because my libs were already stored in a directory named "libs"Lysozyme
WARNING, That link says to get rid of everything in your Libraries tab, if you follow these directions and get rid of your "Android Dependencies" virtual folder, you will have to create a new project and reconstruct your program from scratch to get it back.When
@Chris Sim. Without knowing what your problem is exactly, I would say that the solution here is not for your problem. I guess you did clean and rebuild your projects and of course checked your libs are set correctly in the properties.Fortson
when i did: right click on the project - properties - java build path - Order and export - tick Android private libraries and all the libraries that I added everything worked fine thanksGaillard
I
26

Edit the build path in this order, this worked for me.

Make sure the /gen is before /src

enter image description here

Indiscriminate answered 20/7, 2013 at 7:20 Comment(1)
Every time When I put /gen before /src, eclipse eats up the whole memory and freezes my computerElectoral
B
17

I fixed the issue by just adding private libraries of the main project to export here:

Project Properties->Java Build Path->Order And Export

And make sure Android Private Libraries are checked.

Screenshot:

enter image description here

Make sure google-play-services_lib.jar and google-play-services.jar are checked. Clean the project and re-run and the classNotfound exception goes away.

Branle answered 20/6, 2013 at 19:12 Comment(1)
that fixed it for me. Thanks. FYI, this happened after discarding changes made to the .classpath file of the project through GIT and selecting "Android Private Properties" again does actually add these two extra lines back to .classpath.Ashlieashlin
L
1

Imaage

Go to Order and export from project properties and make sure you're including the required jars in the export, this did it for me

Leeds answered 2/7, 2013 at 11:15 Comment(0)
I
1

I've run into this problem a few times opening old projects that include other Android libraries. What works for me is to:

move Android to the top in the Order and Export tab and deselecting it.

Yes, this really makes the difference. Maybe it's time for me to ditch ADT for Android Studio!

Intrust answered 19/8, 2013 at 22:59 Comment(0)
B
1

You can also get this error if you try to include a jar which was compiled with jdk 1.7 instead of 1.6.

In my case, I figured this out by trying to package my app with the Ant scripts provided by the SDK, instead of ADT, and I noticed these errors, which ADT did not show me:

  [dex] Pre-Dexing libjingle_peerconnection.jar -> libjingle_peerconnection-2f82c9bf868a6c58eaf2c3b2fe6a09f3.jar
   [dx]
   [dx] trouble processing:
   [dx] bad class file magic (cafebabe) or version (0033.0000)
   [dx] ...while parsing org/webrtc/StatsReport$Value.class
   [dx] ...while processing org/webrtc/StatsReport$Value.class

I recompiled my jar with jdk 1.6 and the error was fixed.

Brina answered 13/12, 2013 at 6:8 Comment(0)
V
1

Try going to Project -> Properties -> Java Build Path -> Order & Export And Confirm Android Private Libraries are checked for your project and for all other library projects you are using in your Application.

Vinny answered 16/4, 2015 at 12:28 Comment(0)
G
0

After Checking Java Build Path, Then add lines of code in manifest file.

<meta-data
            android:name="com.google.android.gms.version"
            android:value="@integer/google_play_services_version" />
Grandiloquent answered 26/8, 2015 at 11:29 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.