我和其他人一样使用Volley作为我项目中的网络库。因此,在大多数教程中,指南建议克隆项目并遵循样板步骤来构建项目。
有没有人知道,为什么Google没有将项目构建到现成的Jar文件中,以便轻松实现?
答案 0 :(得分:0)
如果你在Android Studio中使用gradle,可以在gradle.build文件的依赖项中添加一行。
dependencies {
compile 'com.mcxiaoke.volley:library:1.0.+'
}
如果您使用的是Eclipse,可以将Volley添加为库项目,这将节省您创建jar的时间。
答案 1 :(得分:0)
如果您使用git,可以使用' git submodule add'添加排球库项目作为子模块。 https://android.googlesource.com/platform/frameworks/volley/
答案 2 :(得分:0)
为了在您的应用程序中使用Volley,您可以使用几种解决方案:
将以下依赖项添加到您应用的build.gradle文件中(根据Android最简单的方法):
dependencies {
compile 'com.android.volley:volley:1.1.0'
}
克隆Github存储库,然后设置为库。有关完整说明,请参阅Android developer。
git clone https://github.com/google/volley