Created
November 21, 2024 09:08
-
-
Save Lutzifer/8a987fce2f7e2dc786c7f55278afa77b to your computer and use it in GitHub Desktop.
Setup Android Development Tools in your Shell when managing Android Studio using the Jetbrains Toolbox. Your terminal automatically uses the java sdk included in Android Studio then.
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
# Android | |
export PATH="$HOME/Library/Android/sdk/cmdline-tools/latest/bin:$HOME/Library/Android/sdk/platform-tools:$PATH" | |
export ANDROID_HOME=~/Library/Android/sdk | |
export JAVA_HOME=~/Applications/Android\ Studio.app/Contents/jbr/Contents/Home | |
alias aed="open -b com.google.android.studio" # Open current Folder in Android Studio: "aed ." |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment