Last active
August 29, 2015 14:11
-
-
Save stefanhoth/593451dfb4576ec9a21c to your computer and use it in GitHub Desktop.
Jack & Jill command line helpers. Put them in a directory in your PATH, e.g. <android-sdk>/. Use .bat files for Windows, .sh for Mac/Linux. More info in the documentation: http://tools.android.com/tech-docs/jackandjill
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@ECHO OFF | |
@REM Jack is only available from build tools version 21.1.0 and up. Install/Update via SDK Manager | |
SET BUILD_TOOLS_VERSION=21.1.2 | |
java -jar %ANDROID_HOME%/build-tools/%BUILD_TOOLS_VERSION%/jack.jar %1 %2 %3 %4 %5 %6 %7 %8 %9 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Jack is only available from build tools version 21.1.0 and up. Install/Update via SDK Manager | |
BUILD_TOOLS_VERSION=21.1.2 | |
java -jar $ANDROID_HOME/build-tools/$BUILD_TOOLS_VERSION/jack.jar $@ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@ECHO OFF | |
@REM Jill is only available from build tools version 21.1.0 and up. Install/Update via SDK Manager | |
SET BUILD_TOOLS_VERSION=21.1.2 | |
java -jar %ANDROID_HOME%/build-tools/%BUILD_TOOLS_VERSION%/jill.jar %1 %2 %3 %4 %5 %6 %7 %8 %9 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Jill is only available from build tools version 21.1.0 and up. Install/Update via SDK Manager | |
BUILD_TOOLS_VERSION=21.1.2 | |
java -jar $ANDROID_HOME/build-tools/$BUILD_TOOLS_VERSION/jill.jar $@ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment