Skip to content

Instantly share code, notes, and snippets.

@zaki50
Created November 3, 2012 06:07
Show Gist options
  • Save zaki50/4006249 to your computer and use it in GitHub Desktop.
Save zaki50/4006249 to your computer and use it in GitHub Desktop.
support package v4 のソース Jar 生成ワンライナー
pushd ~/android-sdks/extras/android/support/v4/; rm -rf tmp__ android-support-v4-src.jar; mkdir tmp__; for d in src/*; do echo "copying files in $d"; (cd "$d"; cp -r . ../../tmp__); done; (cd tmp__; zip -q -r ../android-support-v4-src.jar .; echo "src=../libs_src/android-support-v4-src.jar" > ../android-support-v4.jar.properties); rm -rf tmp__; popd 2>&1 > /dev/null
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment