xwords/xwords4/android/scripts/setup_local_props.sh
2012-01-02 18:17:29 -08:00

16 lines
293 B
Bash
Executable file

#!/bin/sh
echo $0
cd $(dirname $0)
cd ../XWords4
# create local.properties for 1.6 sdk (target id 4). Use 'android
# list targets' to get the full set.
android update project --path . --target android-7
echo "local.properties looks like this:"
echo ""
cat local.properties
echo ""
exit 0