Difference between revisions of "Resources for Learning Android App Development"
Jrromasanta1 (talk | contribs) (Created page with '---- '''How to add Android SDK in Mac Terminal commandline ''' # Download Android sdk from : http://developer.android.com/sdk/index.html # Unzip the file and place it in a folde…') |
Jrromasanta1 (talk | contribs) |
||
Line 1: | Line 1: | ||
− | ---- | + | ----http://zenit.senecac.on.ca/wiki/index.php?title=Resources_for_Learning_Android_App_Development&action=edit |
− | '''How to add Android SDK in Mac Terminal commandline ''' | + | '''How to add Android SDK And sqlite3 in Mac Terminal commandline ''' |
# Download Android sdk from : http://developer.android.com/sdk/index.html | # Download Android sdk from : http://developer.android.com/sdk/index.html | ||
Line 11: | Line 11: | ||
# Check if Android is working: | # Check if Android is working: | ||
''android -h'' | ''android -h'' | ||
+ | # Check if sqlite is working: | ||
+ | ''sqlite3'' | ||
reference : http://www.androidauthority.com/how-to-install-android-sdk-software-development-kit-21137/ | reference : http://www.androidauthority.com/how-to-install-android-sdk-software-development-kit-21137/ | ||
-Jose | -Jose | ||
---- | ---- |
Revision as of 20:15, 17 September 2013
http://zenit.senecac.on.ca/wiki/index.php?title=Resources_for_Learning_Android_App_Development&action=edit
How to add Android SDK And sqlite3 in Mac Terminal commandline
- Download Android sdk from : http://developer.android.com/sdk/index.html
- Unzip the file and place it in a folder
- Open Terminal.
- Edit ~/.profile and append the path to the executable binary files:
export PATH=~/[PATH OF THE FOLDER YOU HAVE UNZIPPED]/adt-bundle-mac-x86_64-20130729/sdk/tools:$PATH
- check if tools are in bash path:
echo $PATH
- Check if Android is working:
android -h
- Check if sqlite is working:
sqlite3
reference : http://www.androidauthority.com/how-to-install-android-sdk-software-development-kit-21137/ -Jose