Cannot resolve symbol HttpGet,HttpClient,HttpResponce in Android Studio

前端 未结 12 1982
深忆病人
深忆病人 2020-12-02 12:47

I just copy all the jar files of Http but Android Studio cann\'t import all these jar files.It gives an error : Cannot resolve symbol HttpGe

12条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-12-02 13:29

    HttpClient is not supported any more in sdk 23. You have to use URLConnection or downgrade to sdk 22 (compile 'com.android.support:appcompat-v7:22.2.0')

    If you need sdk 23, add this to your gradle:

    In dependencies add:

    compile 'org.apache.httpcomponents:httpcore:4.4.1'
    compile 'org.apache.httpcomponents:httpclient:4.5'
    

    and also add this

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

提交回复
热议问题