Skip to content
This repository was archived by the owner on Oct 16, 2024. It is now read-only.

Commit ececa78

Browse files
committed
v3.2.1: Small adjustments for new aapt-branch.
1 parent fc1ad77 commit ececa78

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ Last updated: 1.3.2016 | adb version: 1.0.32 Revision eac51f2bb6a8-android
55
------------------------
66
Installs the adb and fastboot binaries for OS X and Linux.
77

8+
If you need the aapt as well, please switch to branch [`aapt`](https://github.com/simmac/minimal_adb_fastboot/tree/aapt) or download the zip [here](https://github.com/simmac/minimal_adb_fastboot/archive/aapt.zip).
9+
810
Do the following steps:
911
- Download the zip
1012
- unzip it
@@ -30,7 +32,9 @@ Changelog:
3032
- 2.0.0 | 14.03.2015 Added Linux support! (experimental, feedback very welcome!)
3133
- 3.0.0 | 31.05.2015 Improved code quality and readability a lot by rewriting the whole script and using functions. Added the arguments *uninstall*, *adb* and *fastboot*. **Changed the installation path on OS X to /usr/local/bin !**
3234
- 3.1.0 | 05.10.2015 Updated to newest v23 binaries. Required for Android Marshmallow on flounder.
33-
- **3.2.0** | 01.03.2016 Checks if installation directory exists before running the script
35+
- 3.2.0 | 01.03.2016 Checks if installation directory exists before running the script
36+
- **3.2.1** | 01.03.2016 new branch with aapt-binaries, added aapt-unnstaller
37+
3438

3539
Support Thread:
3640
----------------

install.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,8 @@ function uninstall () {
106106

107107
sudo rm -f $INSTALLPATH/adb
108108
sudo rm -f $INSTALLPATH/fastboot
109-
109+
sudo rm -f $INSTALLPATH/aapt
110+
110111
if [ -f "$INSTALLPATH/adb" ] || [ -f "$INSTALLPATH/fastboot" ]; then
111112
return 1;
112113
else

0 commit comments

Comments
 (0)