I have a simple class written in Android Studio:
package com.mysite.myapp; import org.apache.http.client.HttpClient; public class Whatever { public voi
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.