Can't import org.apache.http.HttpResponse in Android Studio

后端 未结 6 1817
醉梦人生
醉梦人生 2020-12-03 06:53

I want to use these libraries in Android Studio:

import org.apache.http.HttpResponse;
import org.apache.http.client.HttpClient;
import org.apache.http.client         


        
6条回答
  •  长情又很酷
    2020-12-03 07:33

    According to the Apache site this is the Gradle dependency you need to include, if you use Android API 23 or newer:

    dependencies {
        compile group: 'cz.msebera.android' , name: 'httpclient', version: '4.4.1.1'
    }
    

    Source: https://hc.apache.org/httpcomponents-client-4.5.x/android-port.html

提交回复
热议问题