Created
February 13, 2020 22:58
-
-
Save jonathanpeppers/4351f9b07f08b201c6216baa62b527bf to your computer and use it in GitHub Desktop.
My default zsh profile for macOS / xamarin-android development
This file contains 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
SRC_DIR="/Users/jopepper/src" | |
XA_DIR="$SRC_DIR/xamarin-android" | |
XA_TOOLCHAIN_DIR="/Users/jopepper/android-toolchain" | |
XA_ANDROID_SDK_DIR="$XA_TOOLCHAIN_DIR/sdk" | |
JAVA_HOME="$XA_TOOLCHAIN_DIR/jdk" | |
alias xabuild="$XA_DIR/bin/Debug/bin/xabuild" | |
alias xabuildr="$XA_DIR/bin/Release/bin/xabuild" | |
alias adb="$XA_ANDROID_SDK_DIR/platform-tools/adb" | |
alias java="$JAVA_HOME/bin/java" | |
alias javac="$JAVA_HOME/bin/javac" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment