I\'m trying to make kSOAP working in my Android project with Gradle.
This is my project\'s build.gradle file:
buildscript { repositories {
More simple solution is just download the .jar from http://www.bvbcode.com/code/ed5zc936-1814251-down and add this .jar file to your libs folder.
Finally in your build.gradle:
dependencies { compile fileTree(include: ['*.jar'], dir: 'libs') }
This worked fine for me.