lightning-i2p/setup-ant.sh

18 lines
440 B
Bash
Raw Normal View History

#!/bin/sh
target="android-20"
# Travis doesn't support android-20 yet
if [ -n "$TRAVIS" ]; then
target="android-19";
fi
# Update ant setup in project and all sub-projects
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
2014-07-22 22:36:36 +00:00