Hi I am new for android in my app I am integrating with services so when I import all these jar files. It gives an error :
Cannot resolve symbol Ht
HttpClient was deprecated in API Level 22 and removed in API Level 23. You have to use URLConnection.
URLConnection
If you anyway need in 23, add this to your gradle::
android { useLibrary 'org.apache.http.legacy' }
NOTE: Instead, I would recommend using OkHttp.