无法解析符号AsyncHttpClient

时间:2015-06-20 16:55:59

标签: android android-studio android-async-http

我试图使用:

AsyncHttpClient client = new AsyncHttpClient();

它说:

  

无法解析符号' AsyncHttpClient'。

我使用最新的Android Studio和build.gradle min:15 target:22

1 个答案:

答案 0 :(得分:2)

http://loopj.com/android-async-http/下载jar文件并粘贴到app / lib文件夹

使用格式

的Gradle buildscript添加maven依赖项
dependencies {
  compile 'com.loopj.android:android-async-http:1.4.9'
}

然后导入http包。

import com.loopj.android.http.*;