Android studio中“import org.apache.http.Header;”没用?

Android M 起默认移除了Apache HTTP:https://developer.android.com/intl/zh-cn/preview/behavior-changes.html
要使用的话,要这么干
1、在gradle-wrapper.properties中配置使用较新版本的gradle

distributionUrl=https\://services.gradle.org/distributions/gradle-2.6-all.zip

2、在build.gradle中使用较新版本的gradle buildtools (可忽略,项目中默认是最新的gradle)

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

3、添加以下依赖,重新使用已经deprecated 的apache http 包:

android {
    useLibrary 'org.apache.http.legacy'
}

4、添加apache http component 的依赖,补全缺失的类,比如Header:

dependencies {
    compile 'org.apache.httpcomponents:httpcore:4.4.2'
}

你可能感兴趣的:(Android,小积累)