Skip to content

Commit

Permalink
最新の volley.jar をビルドするシェルスクリプトを置きました。
Browse files Browse the repository at this point in the history
カレントディレクトリを externals にした状態で ./build_volley.sh を実行してください。
ビルドに成功するとカレントディレクトリに volley.jar ができるので、適切な場所に配置して使ってください。
  • Loading branch information
zaki50 committed Dec 20, 2013
1 parent 9a098a1 commit 11bdaa7
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
2 changes: 2 additions & 0 deletions externals/.gitignore
@@ -0,0 +1,2 @@
volley_work
volley.jar
15 changes: 15 additions & 0 deletions externals/build_volley.sh
@@ -0,0 +1,15 @@
#!/bin/sh
set -x

work_dir=volley_work
rm -rf "$work_dir"
mkdir "$work_dir"

pushd "$work_dir"

git clone https://android.googlesource.com/platform/frameworks/volley
cd volley
ant jar
cp bin/volley.jar ../../

popd

0 comments on commit 11bdaa7

Please sign in to comment.