我正在使用android studio,在尝试使用HttpPost时,HttpClient表示无法找到符号。我在网上冲浪,发现如果我们处于api级别23,我们需要增加一些依赖性,所以我补充说。
useLibrary 'org.apache.http.legacy'
和
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.0.1'
compile 'com.android.support:design:23.0.1'
compile 'org.apache.httpcomponents:httpcore:4.4.1'
compile 'org.apache.httpcomponents:httpclient:4.5'
}
在我的build.gradle文件中。但即使添加了这个,也存在同样的问题。 任何其他解决方案。
答案 0 :(得分:0)
如果您遇到依赖性问题,请从以下链接下载jar并将其添加到libs文件夹中。然后右键单击该jar,然后选择Add as Library。