当我在gradle中使用它时,它显示为
"错误:无法找到可选库:org.apache.http.legacy"
android {
compileSdkVersion 23
buildToolsVersion "23.0.2"
useLibrary 'org.apache.http.legacy'
defaultConfig {
applicationId "com.xxxxxxx.xxxxxxx"
minSdkVersion 15
targetSdkVersion 23
}
......
}
项目级别:
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.1.0'
}
}
allprojects {
repositories {
jcenter()
}
}
答案 0 :(得分:0)
将 Android / Sdk / platforms / android-23 / optional 文件夹中的org.apache.http.legacy.jar添加到 app / libs 目录并同步项目。 检查此Link,因为此问题看起来很相似。