Sorry for my bad English first, I'm new to android studio 1.4, I get an error in HttpClient
Mistake
C:\Users\madhu\AndroidStudioProjects\LoginAndsign\app\src\main\java\com\login\loginandsign\SimpleHttpClient.java
Error:(27, 20) error: cannot find symbol class HttpClient
Error:(34, 20) error: cannot find symbol class HttpClient
Error:(36, 31) error: cannot find symbol class DefaultHttpClient
Error:(40, 13) error: cannot find symbol variable ConnManagerParams
Error:(57, 13) error: cannot find symbol class HttpClient
Error:(58, 13) error: cannot find symbol class HttpPost
Error:(58, 36) error: cannot find symbol class HttpPost
Error:(59, 13) error: cannot find symbol class UrlEncodedFormEntity
Error:(59, 51) error: cannot find symbol class UrlEncodedFormEntity
Error:(96, 13) error: cannot find symbol class HttpClient
Error:(97, 13) error: cannot find symbol class HttpGet
Error:(97, 35) error: cannot find symbol class HttpGet
I have added below dependencies, but at the same time it shows the same error
dependencies {
compile 'com.google.android.gms:play-services:+'
compile 'org.apache.httpcomponents:httpclient:4.2.6'
compile 'org.apache.httpcomponents:httpmime:4.2.6'
compile files('libs/core.jar')
}
source
share