[android] Added utility scripts

This commit is contained in:
Alex Zolotarev 2011-07-03 03:53:37 +03:00 committed by Alex Zolotarev
parent bd27a9d733
commit bbfac69edc
2 changed files with 22 additions and 0 deletions

3
tools/android/aapt Executable file
View file

@ -0,0 +1,3 @@
#!/bin/bash
/Developer/android-sdk-mac_x86/platform-tools/aapt2 $@ -0 mwm -0 txt -0 bin -0 update -0 skn -0 slf -0 html -0 png -0 ttf

19
tools/android/update_assets.sh Executable file
View file

@ -0,0 +1,19 @@
#!/bin/bash
set -e -x -u
SRC=../../data
DST=../../android/assets
# Remove old links
rm $DST/*
files=(01_dejavusans.ttf 02_wqy-microhei.ttf 03_jomolhari-id-a3d.ttf 04_padauk.ttf \
05_khmeros.ttf 06_code2000.ttf World.mwm about-travelguide-iphone.html \
basic.skn basic_highres.skn categories.txt classificator.txt countries.txt \
drawing_rules.bin fonts_blacklist.txt fonts_whitelist.txt languages.txt \
maps.update symbols_24.png symbols_48.png unicode_blocks.txt visibility.txt)
for item in ${files[*]}
do
ln -s $SRC/$item $DST/$item
done