I\'m trying to make kSOAP working in my Android project with Gradle.
This is my project\'s build.gradle file:
buildscript {
repositories {
I know there are already answers using a jar file. I wanted to add one with the latest updated links:
Download ksoap2-android-assembly-3.6.4-jar-with-dependencies.jar and add it to folder libs.
in build.grade:
android {
...
configurations {
all {
exclude group: 'com.squareup.okhttp3', module: 'okhttp'
}
}
}
...
dependencies {
...
implementation fileTree(include: '*.jar', dir: 'libs')
...
}