Failed To Implement Ksoap2-android-assembly-3.6.0 Within Android Studio
I am working on a ONVIF Android application project. I found out that it is based on web services and SOAP protocol. Afterward, I downloaded the ksoap2-android-assembly-3.6.0.JAR l
Solution 1:
I imported it like this:
repositories {
maven { url 'https://oss.sonatype.org/content/repositories/ksoap2-android-releases/' }
}
dependencies {
compile'com.google.code.ksoap2-android:ksoap2-android:3.6.1'
}
and
import org.ksoap2.serialization.SoapObject;
Post a Comment for "Failed To Implement Ksoap2-android-assembly-3.6.0 Within Android Studio"