mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-01 06:19:57 +01:00
16 lines
285 B
Bash
Executable file
16 lines
285 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 6
|
|
|
|
echo "local.properties looks like this:"
|
|
echo ""
|
|
cat local.properties
|
|
echo ""
|
|
exit 0
|