Cannot resolve symbol HttpGet,HttpClient,HttpResponce in Android Studio

前端 未结 12 1983
深忆病人
深忆病人 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:42

    Please remove all jar files of Http from 'libs' folder and add below dependencies in gradle file:

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

    or

    useLibrary 'org.apache.http.legacy'
    

提交回复
热议问题