diff --git a/android/script/push_data.sh b/android/script/push_data.sh new file mode 100644 index 0000000000..014a17a4e6 --- /dev/null +++ b/android/script/push_data.sh @@ -0,0 +1,14 @@ +#!/bin/bash + +DATA=../tests/data +DST=/sdcard/MapsWithMe + +# clean all +adb -s $1 shell rm $DST/*.kmz +adb -s $1 shell rm $DST/*.kml + +# copy files +for file in $(find $DATA -type f) ; do + echo $file + adb -s $1 push $file $DST +done