
This adds the command to update the embedded Android Test Project, so that it can be run using `cd test/; ant clean emma debug install test` It also changes -p to --path just to make things a little easier to read.
11 lines
359 B
Bash
Executable File
11 lines
359 B
Bash
Executable File
#!/bin/bash -ex
|
|
|
|
android update lib-project --path extern/Universal-Image-Loader/library
|
|
android update lib-project --path extern/AndroidPinning
|
|
android update lib-project --path extern/MemorizingTrustManager
|
|
android update project --path . --name F-Droid
|
|
|
|
# technically optional, needed for the tests
|
|
cd test
|
|
android update test-project --path ./ --main ../
|