BobStore/ant-prepare.sh

18 lines
667 B
Bash
Raw Normal View History

#!/bin/bash -ex
android update lib-project --path extern/UniversalImageLoader/library
android update lib-project --path extern/AndroidPinning
android update lib-project --path extern/MemorizingTrustManager
2014-05-19 08:49:06 +02:00
android update lib-project --path extern/nanohttpd/core
android update lib-project --path extern/libsuperuser/libsuperuser
2014-05-18 14:04:07 +02:00
android update lib-project --path extern/jmdns
android update project --path . --name F-Droid
{ echo -e "\nSuccessfully updated the main project.\n"; } 2>/dev/null
# technically optional, needed for the tests
cd test
android update test-project --path . --main ..
{ echo -e "\nSuccessfully updated the test project.\n"; } 2>/dev/null