Difference between revisions of "Jose Mac"
(Created page with '# 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 …') |
Jrromasanta1 (talk | contribs) |
||
Line 11: | Line 11: | ||
''sqlite3'' | ''sqlite3'' | ||
− | * adt-bundle-mac-x86_64-20130729 folder will contain the '''eclipse with Android development tool''' preload and ready to use | + | * Note: '''adb''' tool has been moved in the adt-bundle-mac-x86_64-20130729/sdk/'''platform-tools folder''' in the current adt-bundle-mac-x86_64-20130729. You must also add an bash command to access adb with : ''export PATH=~/[PATH OF THE FOLDER YOU HAVE UNZIPPED]/adt-bundle-mac-x86_64-20130729/sdk/platform-tools:$PATH'' |
+ | |||
+ | adt-bundle-mac-x86_64-20130729 folder will contain the '''eclipse with Android development tool''' preload and ready to use | ||
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 | ||
---- | ---- |
Latest revision as of 22:18, 17 September 2013
- 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
- Note: adb tool has been moved in the adt-bundle-mac-x86_64-20130729/sdk/platform-tools folder in the current adt-bundle-mac-x86_64-20130729. You must also add an bash command to access adb with : export PATH=~/[PATH OF THE FOLDER YOU HAVE UNZIPPED]/adt-bundle-mac-x86_64-20130729/sdk/platform-tools:$PATH
adt-bundle-mac-x86_64-20130729 folder will contain the eclipse with Android development tool preload and ready to use
reference : http://www.androidauthority.com/how-to-install-android-sdk-software-development-kit-21137/ -Jose