Reputation: 31
I have provide reference of ksoap2 jar in my android project in eclipse. Still I'm getting the error: NoclassDefFoundError:org.ksoap2.serialization.SoapObject Could some one help me to solve this issue. Thanks in advance.
Upvotes: 0
Views: 692
Reputation: 665
Turns out external jars such as
ksoap2-android-assembly-2.6.2-jar-with-dependencies.jar
to be put under /libs folder so Eclipse ADT automatically adds your jars to the buildpath of your application. It was a buildpath missing defined class error after all.. I hope this will help you, too!
Upvotes: 1