30

我正在尝试使用 Gradle 使 kSOAP 在我的 Android 项目中工作。

这是我项目的 build.gradle 文件:

buildscript {
    repositories {
        mavenCentral()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:0.5.+'
    }
}
apply plugin: 'android'

repositories {
    mavenCentral()

    maven {
        url 'http://ksoap2-android.googlecode.com/svn/m2-repo'
    }
}

android {
    compileSdkVersion 18
    buildToolsVersion "18.0.1"

    defaultConfig {
        minSdkVersion 7
        targetSdkVersion 18
    }
}

dependencies {
    compile 'com.android.support:support-v4:18.0.0'
    compile 'ch.acra:acra:4.5.0'
    compile 'com.google.guava:guava:12.0'
    compile 'com.google.code.ksoap2-android:ksoap2-android:3.0.0'
}

该库似乎包含在项目中并且编译确实有效,但是当我尝试导入一个类(即 SoapObject)时,似乎命名空间甚至不存在。有趣的是,其他库(例如 ACRA 或 Guava)运行良好。我怎么解决这个问题?

4

8 回答 8

48

我正在使用@amitav13 的解决方案,但存储库的 URL 已更改:

repositories {
        maven { url 'https://oss.sonatype.org/content/repositories/ksoap2-android-releases' }
    }

目前的版本是 3.6.0

compile 'com.google.code.ksoap2-android:ksoap2-android:3.6.0'

这确实对我有用。

于 2016-01-22T20:57:01.753 回答
35

这也花了我一些时间才弄清楚,但我终于让它工作了。我一直在研究一个为 KSoap 解析的 WSDL 解析器,最后得到了它的工作,只是为了通过 Gradle 与 ksoap 的导入进行斗争。无论如何,这就是你的做法。

apply plugin: 'android-library'

buildscript {
    repositories {
        mavenCentral()
        maven { url 'https://oss.sonatype.org/content/repositories/ksoap2-android-releases/' }
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:0.8.+'
        classpath 'com.google.code.ksoap2-android:ksoap2-android:3.1.1'
    }
}

repositories {
    maven { url 'https://oss.sonatype.org/content/repositories/ksoap2-android-releases/' }
}


android {
    compileSdkVersion 19
    buildToolsVersion "19.0.1"

    defaultConfig {
        minSdkVersion 15
        targetSdkVersion 19
        versionCode 1
        versionName "1.0"
    }
    release {
        runProguard false
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
    }
}

dependencies {

    compile 'com.google.code.ksoap2-android:ksoap2-android:3.1.1'

}

当然我的是一个服务库,所以你可能想使用应用插件:'android'。希望这有助于并节省一些时间。

于 2014-01-28T22:48:10.580 回答
34

这是 Sam 建议的 build.gradle 的更精简版本,适用于我:

apply plugin: 'com.android.application'

android {
compileSdkVersion 21
buildToolsVersion "20.0.0"

defaultConfig {
    applicationId "com.example.test"
    minSdkVersion 15
    targetSdkVersion 21
    versionCode 1
    versionName "1.0"
}
buildTypes {
    release {
        runProguard false
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
    }
    repositories {
        maven { url 'https://oss.sonatype.org/content/repositories/ksoap2-android-releases' }
    }
}
}

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    compile 'com.google.code.ksoap2-android:ksoap2-android:3.6.2'
}

注意这是app的build.gradle,我没有对项目build.gradle做任何修改。

于 2014-10-31T15:38:23.950 回答
14
repositories {
    maven { url 'https://oss.sonatype.org/content/repositories/ksoap2-android-releases/' }
}

和内部依赖项

compile 'com.google.code.ksoap2-android:ksoap2-android:3.6.1'
于 2016-08-17T07:00:41.347 回答
3

我也有同样的情况。我放弃了从 mavencentral 添加那个罐子。

我将原始 jar 添加为库。

  1. 从此网址下载最新(或任何版本)的 ksoap2-android
  2. 在 build.gradle 中调用它,见下文

这是代码:

dependencies {
   compile files('libs/ksoap2-android.jar')
}

我希望它会有所帮助。

于 2013-12-02T09:26:20.443 回答
3

这些答案已经很老了,没有一个对我有用。这是我使用 Android Studio 3.1.4 和 ksoap 3.6.4 的解决方案

安卓毕业:

// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {

    repositories {
        google()
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.1.4'

        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

repositories {
    maven { url 'https://oss.sonatype.org/content/repositories/ksoap2-android-releases/' }
}

allprojects {
    repositories {
        google()
        jcenter()
    }
}

task clean(type: Delete) {
    delete rootProject.buildDir
}

应用等级:

apply plugin: 'com.android.application'

android {
    compileSdkVersion 28
    defaultConfig {
        applicationId "com.myapp.aspservicetest"
        minSdkVersion 24
        targetSdkVersion 28
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }

        repositories {
            maven { url 'https://oss.sonatype.org/content/repositories/ksoap2-android-releases' }
        }
    }
}

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation 'com.android.support:appcompat-v7:28.0.0'
    implementation 'com.android.support.constraint:constraint-layout:1.1.3'
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'com.android.support.test:runner:1.0.2'
    androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
    implementation 'com.google.code.ksoap2-android:ksoap2-android:3.6.4'
}
于 2019-06-30T00:43:17.770 回答
1

更简单的解决方案是从http://www.bvbcode.com/code/ed5zc936-1814251-down下载 .jar并将这个 .jar 文件添加到您的 libs 文件夹中。

最后在你的 build.gradle 中:

dependencies {
    compile fileTree(include: ['*.jar'], dir: 'libs') 
}

这对我来说很好。

于 2016-08-24T07:37:50.277 回答
0

我知道已经有使用 jar 文件的答案。我想添加一个最新更新的链接:

下载 ksoap2-android-assembly-3.6.4-jar-with-dependencies.jar并将其添加到文件夹 libs。

在 build.grade 中:

android {
...
    configurations {
        all {
            exclude group: 'com.squareup.okhttp3', module: 'okhttp'
        }
    }
}
...
dependencies {
...
 implementation fileTree(include: '*.jar', dir: 'libs')
...
}
于 2019-12-10T00:48:40.823 回答