Netroid 無法匯入 http.protocol.HTTP問題

沒事偷著樂琅發表於2017-05-16

是因為 android6.0SDK 中刪除 HttpClient的相關類的解決方法
解決辦法:

Android的build.gradle (Module:app)中新增配置:
useLibrary ‘org.apache.http.legacy’

android {
    compileSdkVersion 24
    buildToolsVersion "25.0.0"
    defaultConfig {
        。。。
    }
    buildTypes {
        release {
           。。。
        }
    }
    useLibrary  'org.apache.http.legacy'
}

dependencies {
        。。。
}

相關文章