2014-01-09 12:35:38 +01:00
|
|
|
#!/bin/bash -ex
|
|
|
|
|
2014-06-05 10:15:26 +02:00
|
|
|
place_support_v4() {
|
|
|
|
mkdir -p $1/libs
|
|
|
|
cp libs/android-support-v4.jar $1/libs/
|
|
|
|
}
|
|
|
|
|
2014-02-15 11:18:58 +01:00
|
|
|
android update lib-project --path extern/UniversalImageLoader/library
|
2014-06-05 10:15:26 +02:00
|
|
|
|
2014-02-13 21:53:52 -05:00
|
|
|
android update lib-project --path extern/AndroidPinning
|
2014-06-05 10:15:26 +02:00
|
|
|
|
2014-02-13 21:53:52 -05:00
|
|
|
android update lib-project --path extern/MemorizingTrustManager
|
2014-06-05 10:15:26 +02:00
|
|
|
|
2014-04-26 02:40:08 +02:00
|
|
|
android update lib-project --path extern/libsuperuser/libsuperuser
|
2014-06-05 10:15:26 +02:00
|
|
|
|
2014-05-25 13:39:56 +02:00
|
|
|
android update lib-project --path extern/zxing-core
|
2014-06-05 10:15:26 +02:00
|
|
|
|
2014-06-04 23:12:49 -04:00
|
|
|
android update lib-project --path extern/android-support-v4-preferencefragment
|
2014-06-05 10:15:26 +02:00
|
|
|
place_support_v4 extern/android-support-v4-preferencefragment
|
|
|
|
|
2014-06-05 09:41:04 +02:00
|
|
|
android update lib-project --path extern/Support/v7/appcompat --target android-19
|
2014-06-05 10:15:26 +02:00
|
|
|
place_support_v4 extern/Support/v7/appcompat
|
|
|
|
|
2014-02-13 21:53:52 -05:00
|
|
|
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
|