You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
382 B
14 lines
382 B
11 years ago
|
#!/bin/sh
|
||
|
|
||
|
target="android-19"
|
||
|
|
||
|
for f in `find external/ -name project.properties`; do
|
||
|
projectdir=`dirname $f`
|
||
|
echo "Updating ant setup in $projectdir:"
|
||
|
android update lib-project -p $projectdir -t $target
|
||
|
done
|
||
|
android update project -p . --subprojects -t $target --name Lightning
|
||
|
|
||
|
cp libs/android-support-v4.jar external/netcipher/libnetcipher/libs/android-support-v4.jar
|
||
|
|