在 Android Studio 中集成 KSOAP 库的正确方法是什么?

What is the correct Way to integrate KSOAP library in Android Studio?

我正在尝试这样的事情,

在Gradle,

内部构建类型,

    repositories {
        maven { url 'http://ksoap2-android.googleco/svde.cmomn/2-repo'
  }

并在依赖项中。 . .

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

Error: Failed to resolve dependencies

解决方案:在模块(不是项目)的 build.gradle 内写入:

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

和内部依赖关系

implementation 'com.google.code.ksoap2-android:ksoap2-android:3.6.2'

转到此 link 并下载 jar 文件。然后将下载的 jar 文件添加到 app 文件夹中的 libs 文件夹中(Your Project->app->libs)。 然后右键单击 ksoap jar 文件和 select "Add as Library".

完成。

编辑:更新了 LINK

另一种方式是:

1: here 下载 ksoap2-versionX.jar 文件。

2: 复制 ksoap2-versionX.jar 文件到项目中的 libs 文件夹。

3: 右键单击​​您项目中复制的文件并select 添加为库

见: http://ask.android-studio.org/?/question/188

在 Android Studio 中,您有两个 build.gradle 文件:

我的第一个文件(项目):

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

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

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

和我的第二个文件(模块):

apply plugin: 'com.android.application'

android {
    compileSdkVersion 25
    buildToolsVersion '27.0.3'
    defaultConfig {
        applicationId "com.asemansystem.com.caferc"
        minSdkVersion 15
        targetSdkVersion 25
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

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

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
        exclude group: 'com.android.support', module: 'support-annotations'
    })
    compile 'com.android.support:appcompat-v7:25.3.1'
    compile 'com.android.support.constraint:constraint-layout:1.0.0-alpha7'
    compile 'com.android.support:design:25.3.1'
    compile 'com.android.support:support-v4:25.3.1'
    compile 'com.google.code.ksoap2-android:ksoap2-android:3.6.2'
    testCompile 'junit:junit:4.12'
}

这是我在 Android Studio 的新版本中的:

build.gradle(模块)中:

dependencies {
    ...
    implementation 'com.google.code.ksoap2-android:ksoap2-android:3.6.4'
}

settings.gradle:

pluginManagement {
    repositories {
        gradlePluginPortal()
        google()
        mavenCentral()
    }
}
dependencyResolutionManagement {
    repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
    repositories {
        google()
        mavenCentral()
        maven { url 'https://oss.sonatype.org/content/repositories/ksoap2-android-releases/' }
    }
}
rootProject.name = "idt.pda"
include ':app'