I\'m trying to make kSOAP working in my Android project with Gradle.
This is my project\'s build.gradle file:
buildscript {
repositories {
I was in the same situation. And I gave up to add that jar from mavencentral.
I added the raw jar as a lib.
Here is the code:
dependencies {
compile files('libs/ksoap2-android.jar')
}
I hope it will help.