wok-current view android-sdk/stuff/tazdroid @ rev 25354
updated tiff, tiff-apps and tiff-dev (4.1.0 -> 4.4.0)
author | Hans-G?nter Theisgen |
---|---|
date | Tue Jul 26 16:22:26 2022 +0100 (2022-07-26) |
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