Adding kSOAP dependency to Gradle project

后端 未结 8 724
梦毁少年i
梦毁少年i 2020-12-24 13:43

I\'m trying to make kSOAP working in my Android project with Gradle.

This is my project\'s build.gradle file:

buildscript {
    repositories {
               


        
8条回答
  •  暖寄归人
    2020-12-24 13:52

    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.

提交回复
热议问题