HttpClient won't import in Android Studio

后端 未结 23 2934
一生所求
一生所求 2020-11-22 14:44

I have a simple class written in Android Studio:

package com.mysite.myapp;

import org.apache.http.client.HttpClient;

public class Whatever {
    public voi         


        
23条回答
  •  星月不相逢
    2020-11-22 15:16

    HttpClient is not supported in sdk 23 and 23+.

    If you need to use into sdk 23, add below code to your gradle:

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

    Its working for me. Hope useful for you.

提交回复
热议问题