33 lines
980 B
Bash
Executable File
33 lines
980 B
Bash
Executable File
#!/bin/bash -ex
|
|
|
|
place_support_v4() {
|
|
mkdir -p $1/libs
|
|
cp libs/android-support-v4.jar $1/libs/
|
|
}
|
|
|
|
android update lib-project --path extern/UniversalImageLoader/library
|
|
|
|
android update lib-project --path extern/AndroidPinning
|
|
|
|
android update lib-project --path extern/MemorizingTrustManager
|
|
|
|
android update lib-project --path extern/libsuperuser/libsuperuser
|
|
|
|
android update lib-project --path extern/zxing-core
|
|
|
|
android update lib-project --path extern/android-support-v4-preferencefragment
|
|
place_support_v4 extern/android-support-v4-preferencefragment
|
|
|
|
android update lib-project --path extern/Support/v7/appcompat --target android-19
|
|
place_support_v4 extern/Support/v7/appcompat
|
|
|
|
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
|