Difference between revisions of "Resources for Learning Android App Development"

From CDOT Wiki
Jump to: navigation, search
Line 1: Line 1:
 
----
 
----
'''How to add Android SDK And sqlite3 in Mac Terminal commandline '''
+
'''How to add Android SDK And sqlite3 in Mac Terminal commandline and Eclipse with Android development tool'''
  
 
# Download Android sdk from : http://developer.android.com/sdk/index.html
 
# Download Android sdk from : http://developer.android.com/sdk/index.html
Line 13: Line 13:
 
# Check if sqlite is working:
 
# Check if sqlite is working:
 
  ''sqlite3''
 
  ''sqlite3''
 +
 +
* 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
 
----
 
----

Revision as of 21:40, 17 September 2013


How to add Android SDK And sqlite3 in Mac Terminal commandline and Eclipse with Android development tool

  1. Download Android sdk from : http://developer.android.com/sdk/index.html
  2. Unzip the file and place it in a folder
  3. Open Terminal.
  4. 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
  1. check if tools are in bash path:
echo $PATH
  1. Check if Android is working:
android -h
  1. Check if sqlite is working:
sqlite3
  • 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