android async http
1.4.11 Release
适用于 Android 的异步、基于回调的 Http 客户端,构建于 Apache 的 HttpClient 库之上。
查看 2020 年 6 月 29 日发布的 1.4.11 版本的新增功能
https://github.com/android-async-http/android-async-http/blob/1.4.11/CHANGELOG.md
1.4.11 版本的最新 Javadoc 可在此处获取(也包含在 Maven 存储库中):
https://android-async-http.github.io/android-async-http/doc/
为了获得灵感和在设备上进行测试,我们提供了示例应用程序。
在 Github 上查看各个示例
要运行示例应用程序,只需克隆存储库并运行此命令,即可将其安装在连接的设备上
gradle : sample : installDebug
您现在可以通过 Maven 将此库集成到您的项目中。有两种可用的构建。
发布,maven 中心
https://repo1.maven.org/maven2/com/loopj/android/android-async-http/
Maven URL: https://repo1.maven.org/maven2/
GroupId: com.loopj.android
ArtifactId: android-async-http
Version: 1.4.11
Packaging: JAR or AAR
摇篮
repositories {
mavenCentral()
}
dependencies {
implementation ' com.loopj.android:android-async-http:1.4.11 '
}
开发快照快照可能尚未发布
https://oss.sonatype.org/content/repositories/snapshots/com/loopj/android/android-async-http/
Maven URL: https://oss.sonatype.org/content/repositories/snapshots/
GroupId: com.loopj.android
ArtifactId: android-async-http
Version: 1.4.12-SNAPSHOT
Packaging: JAR or AAR
摇篮
repositories {
maven {
url ' https://oss.sonatype.org/content/repositories/snapshots/ '
}
}
dependencies {
implementation ' com.loopj.android:android-async-http:1.4.11-SNAPSHOT '
}
完整的详细信息和文档可以在项目页面上找到:
https://android-async-http.github.io/android-async-http/