Start Android Development in 5 Minutes
1. JDK and Eclipse IDE:
Download and install appropriate JDK for your computer and OS (JDK 6 or 7 are preferred) http://www.oracle.com/technetwork/java/javase/downloads/index.html
Download latest Eclipse distribution, unzip it to your computer. http://www.eclipse.org/downloads/
2. Android SDK:
Download and install android SDK: http://developer.android.com/sdk/index.html
Run Android SDK and install some API (e.g. 8, 14, 16, …). Android distributions have various APIs and your application API must be compatible with your device. This step may also be performed using Eclipse ADT plug-in Android toolbar buttons. For each API, ‘SDK Platform’ is required. ‘SDK Tools’ and ‘SDK Platform Tools’ under ‘Tools’ menu and ‘Android Support Library’ under ‘Extras’ menu should be installed for general usage.
Don’t forget to set your Android SDK directory on Eclipse Window –> Preferences:
3. Eclipse ADT Plugin:
Start Eclipse. Click Help –> Install New Software, paste adress below and click OK: https://dl-ssl.google.com/android/eclipse/
Select ‘Android Development Tools’ from ‘Developer Tools’, click ‘Next’ various times and finish installation.
You will see Android SDK (which performs installing different APIs as told in step 2) and Android emulator buttons on the top panel. You can also start Android projects from now on.
4. Android Emulator:
Android SDK includes a useful emulator for testing. After installing ADT plug-in, you can start emulator by ‘Android Virtual Device Manageer’ button from toolbar. After that you may add one or more android devices with different API and system configurations.
You can have detailed info about emulator usage and command line parameters here: http://developer.android.com/tools/help/emulator.html
5. Creating Project:
Select File –> New –> Project –> Android Application Project. You can also start an Android Sample Project for exercising.
You must select ‘Build SDK’ and ‘Minimum Required SDK’ while creating project.
After that right click your project and select ‘Run’. Your project will run on selected emulator.
After this short and simple start, you may want to look at these:
http://developer.android.com/training/basics/firstapp/index.html http://www.vogella.com/articles/Android/article.html http://www.coreservlets.com/android-tutorial/ http://java.dzone.com/articles/10-attractive-android http://www.javacodegeeks.com/2010/10/android-full-application-tutorial.html
Don’t forget to share!
Reference: Start Android Development in 5 Minutes from our JCG partner Cagdas Basaraner at the CodeBuild blog.