我正在尝试这样的事情,
在Gradle中,
内部构建类型,
repositories {
maven { url 'http://ksoap2-android.googleco/svde.cmomn/2-repo'
}
和依赖。 。 。
compile 'com.google.code.ksoap2-android:ksoap2-android:3.6.0'
错误:无法解析依赖关系
答案 0 :(得分:27)
解决方案:在模块(不是项目)的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'
答案 1 :(得分:2)
在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'
}
答案 2 :(得分:1)
转到此link并下载jar文件。然后将下载的jar文件添加到app文件夹内的libs文件夹中(您的Project-> app-> libs )。 然后右键单击ksoap jar文件并选择" 添加为库"。
完成。
编辑:更新链接
答案 3 :(得分:-1)
另一种方式是:
1:从here下载 ksoap2-versionX.jar
文件。
2:将 ksoap2-versionX.jar
文件复制到项目中的 libs 文件夹中。
3:右键单击项目中复制的文件,然后选择添加为库。