I've added external library (ksoap2) to my Android project.

On most devices it works ok (Android 2.3). But on others (also Android 2.3) I get

java.lang.NoSuchMethodError: org.ksoap2.serialization.SoapObject.getPropertyAsString

What can be the reason of such error?

link|improve this question

60% accept rate
feedback

2 Answers

1) There might be mulitple jars (native libraries) with same code, which may cause wrong class get loaded.

2) Incompatable version of jar, the jar you have in classpath might be older version/newer version.

I strongly suspect in your case it is first. I guess you have two versions of native libraries on the devices where it is failing.

link|improve this answer
Shouldn't the built into APK .jar library get priority in this case? – Evgenyt Feb 10 at 17:32
It is not guaranteed. Depends on classloader. – thinksteep Feb 10 at 17:35
Can this be worked around in some way? Like setting exact version requirement for the dependency (I'm .NET developer, btw). – Evgenyt Feb 10 at 17:48
feedback

It may be that the device's implementation of Java does not contain the jars the ksoap library is dependent on. Remember that Android devices does not support full Java SE, although it supports most of it.

Edit: Oops, I just realized the 'no such method error' was in the Soap package, so my explanation does not hold water. :-)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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