打包volley

1.如果电脑没有安装git和ant的话,需要安装git和ant,直接Google就可以,并配置环境变量

2.在命令行执行

git clone https://android.googlesource.com/platform/frameworks/volley

3.cd volley 并把 ./src/main/AndroidMainfest.xml下复制到 ./

4.执行android update project -p . -t 8

5.ant jar

如果这时候报 org.junit.* 这些类找不到,直接删除 src 下的 test 文件夹,再执行ant jar

成功的话可以看到如下信息:

[jar] Building jar: E:\github_project\volley\bin\volley.jar

BUILD SUCCESSFUL

这样就完成了  bin 目录下的 volley.jar 就是我们想要的东西

你可能感兴趣的:(打包volley)