Last active
July 5, 2016 16:45
-
-
Save deanrock/c69843ef196a1883a74688dab61b9509 to your computer and use it in GitHub Desktop.
How to setup titanium Android native development on Mac
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
brew install ant | |
sudo pip install markdown | |
sudo pip install pycrypto | |
sudo pip install pyopenssl | |
sudo pip install pyyaml | |
sudo pip install Pygments | |
# install android SDK ver 21 | |
... | |
# add android-ndk and platform-tools to $PATH | |
export PATH=/Users/dean/Applications/android/android-ndk-r10e:$PATH | |
export PATH=$PATH:/Users/dean/Library/Android/sdk/platform-tools/ | |
# set env variables for titanium SDK | |
export ANDROID_SDK=/Users/dean/Library/Android/sdk | |
export ANDROID_NDK=/Users/dean/Applications/android/android-ndk-r10e | |
export ANDROID_PLATFORM=/Users/dean/Library/Android/sdk/platforms/android-22 | |
export GOOGLE_APIS=/Users/dean/Library/Android/sdk/add-ons/addon-google_apis-google-22 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment