wok view android-sdk/stuff/tazdroid @ rev 20283

security fixes from 0.3.1.9 (2017 Dec 1) and 0.3.1.10 (March 3)... further info: https://blog.torproject.org/new-stable-tor-releases-security-fixes-and-dos-prevention-03210-03110-02915
author Erkan Yilmaz <erkan@slitaz.org>
date Tue Mar 27 11:09:07 2018 +0000 (2018-03-27)
parents
children
line source
1 #!/bin/sh
2 #
3 # Small utility to work with Android SDK on SliTaz. It also act has a
4 # wrapper fot SDK tools such as 'android' or 'emulator'.
5 #
6 # (C) 2014 SliTaz GNU/LInux - BSD License
7 #
9 export PATH=$PATH:/opt/android-sdk/tools
10 export PATH=$PATH:/opt/android-sdk/platform-tools
11 export PATH=$PATH:/opt/android-sdk/build-tools
13 usage() {
14 echo "Usage: $(basename $0) [help|emulator|export]"
15 }
17 # Handle commands
19 case "$1" in
20 usage|help) usage ;;
21 emulator) emulator $@ & ;;
22 *) android $@ & ;;
23 esac && exit 0