Skip to content Skip to sidebar Skip to footer

Ksoap2 With Proguard

I have an application that is using ksoap2 library, everything working fine but when exporting application from Eclipse, it shows this Proguard returned with error code 1. See cons

Solution 1:

I had a similiar problem and I solved it using this:

-ignorewarnings-keep class org.kobjects.** { *; }-keep class org.ksoap2.** { *; }-keep class org.kxml2.** { *; }-keep class org.xmlpull.** { *; }

Solution 2:

Open .jar in Rar or any Zip application. Delete the xmlpull folder. Thats it :)

Post a Comment for "Ksoap2 With Proguard"