2014-01-09 12:35:38 +01:00
|
|
|
#!/bin/bash -ex
|
|
|
|
|
2014-02-15 11:18:58 +01:00
|
|
|
android update lib-project --path extern/UniversalImageLoader/library
|
2014-02-13 21:53:52 -05:00
|
|
|
android update lib-project --path extern/AndroidPinning
|
|
|
|
android update lib-project --path extern/MemorizingTrustManager
|
|
|
|
android update project --path . --name F-Droid
|
|
|
|
|
2014-04-26 00:33:21 +02:00
|
|
|
{ echo -e "\nSuccessfully updated the main project.\n"; } 2>/dev/null
|
|
|
|
|
2014-02-13 21:53:52 -05:00
|
|
|
# technically optional, needed for the tests
|
|
|
|
cd test
|
2014-02-14 09:18:21 +01:00
|
|
|
android update test-project --path . --main ..
|
2014-04-26 00:33:21 +02:00
|
|
|
|
|
|
|
{ echo -e "\nSuccessfully updated the test project.\n"; } 2>/dev/null
|