Ksoap2 error after updating Android SDK and ADT

I have a problem. When I updated the Android SDK tool to version 17 and ADT to 17, I can no longer use ksoap2.

I run my application and I get this error:

03-25 20:13:49.995: E/AndroidRuntime(555): FATAL EXCEPTION: main
03-25 20:13:49.995: E/AndroidRuntime(555): java.lang.NoClassDefFoundError: org.ksoap2.serialization.SoapObject
03-25 20:13:49.995: E/AndroidRuntime(555):  at com.alcad.pernat.praksa.SplashScreen.pridobiDanasnjo(SplashScreen.java:124)
03-25 20:13:49.995: E/AndroidRuntime(555):  at com.alcad.pernat.praksa.SplashScreen.onCreate(SplashScreen.java:73)
03-25 20:13:49.995: E/AndroidRuntime(555):  at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1047)
03-25 20:13:49.995: E/AndroidRuntime(555):  at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2627)
03-25 20:13:49.995: E/AndroidRuntime(555):  at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2679)
03-25 20:13:49.995: E/AndroidRuntime(555):  at android.app.ActivityThread.access$2300(ActivityThread.java:125)
03-25 20:13:49.995: E/AndroidRuntime(555):  at android.app.ActivityThread$H.handleMessage(ActivityThread.java:2033)
03-25 20:13:49.995: E/AndroidRuntime(555):  at android.os.Handler.dispatchMessage(Handler.java:99)
03-25 20:13:49.995: E/AndroidRuntime(555):  at android.os.Looper.loop(Looper.java:123)
03-25 20:13:49.995: E/AndroidRuntime(555):  at android.app.ActivityThread.main(ActivityThread.java:4627)
03-25 20:13:49.995: E/AndroidRuntime(555):  at java.lang.reflect.Method.invokeNative(Native Method)
03-25 20:13:49.995: E/AndroidRuntime(555):  at java.lang.reflect.Method.invoke(Method.java:521)
03-25 20:13:49.995: E/AndroidRuntime(555):  at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:868)
03-25 20:13:49.995: E/AndroidRuntime(555):  at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:626)
03-25 20:13:49.995: E/AndroidRuntime(555):  at dalvik.system.NativeStart.main(Native Method)

      

I have to get a String with some numbers, but I get this error instead.

I used ksoap2-2.5.4.jar and tried the new ksoap2-android-assembly-2.6.2-jar-with-dependencies.jar. I am using Eclipse indigo, Ubuntu 11.04.

The code looks like this:

SoapObject Request =new SoapObject(NAMESPACE,METHOD_NAME); // Here I get the error
                    SoapSerializationEnvelope soapEnvelope=new SoapSerializationEnvelope(SoapEnvelope.VER11);
                    soapEnvelope.dotNet=false;

                    String tmp=odstejDatum(datum);
                    Request.addProperty("datumod",tmp);
                    Request.addProperty("datumdo",datum);
                    Request.addProperty("tip_lme",1);
                    @SuppressWarnings("deprecation")
                    HttpTransportSE aht=new HttpTransportSE(URL,5000);
                    soapEnvelope.setOutputSoapObject(Request);  
//                  

                    aht.call(SOAP_ACTION_DANASNJI,soapEnvelope);                    
                    Object response= soapEnvelope.getResponse();    

      

Thanks for the help.

+3


source to share


1 answer


Android SDK tool prior to version 17 and ADT prior to 17 changed the lib structure for details .

Here's the fix:

Remove "ksoap2-android-assembly-2.6.2-jar-with-dependencies.jar"

from the build path.



copy jar file to libs folder

(if doesn't exist, create it) then delete the jar file from your folder (if your project has a custom jar folder).

folder structure for adding new jar files

it will automatically take it to the build path. Then clean the project and run.

+4


source







All Articles