Skip to main content

Installing Software - How to Android Development Guide

Stay Hungry, Stay Foolish! Now, that we know 'Why' one should choose Android for application development? It would be apt now to get in the process of developing Android application. We are the right place for you to get started with the Android application development.


This post will help you install Android Software Development Kit (SDK) within the Eclipse Integrated Development Environment (IDE) on Windows Operating System. For, all my friends who belong to non technical background may find the terms mentioned above as 'jargon'. 

Thus, to make development process easy and self learning I have included a jargon buster segment at the end of the post. So, do remember to check that out before posting your query in the comment section below.

To start with, we would require to first download all the software required for Android application development.  And to make, the process less cumber some and easy to understand I have included videos which I had made for our brother site The Geeks Club.


Now, that we have downloaded the software required for Android application development. The next step, is to install Java Development Toolkit (JDK) and set it class path which have been explained in the video segment below.


The last step is to integrate the Android SDK and Android Development Toolkit (ADT) plugins within Eclipse IDE. The video below explains the entire integration process.



I hope that the post was helpful and gave you the adrenaline gush to kick start with Android application development. Help us to know what changes you would like to see in following posts by commenting in the comment section below.

Jargon Buster:

Android Software Development Toolkit: The Android SDK provides the tools and libraries necessary to begin developing applications that run on Android-powered devices.


Eclipse Integrated Development Environment: Eclipse is a multilingual software development environment comprising an integrated development environment (IDE) and an extensible plug-in system. It is written mostly in Java.

Android Development Toolkit plugin for Eclipse IDE: Android Development Tools (ADT) is a plugin for the Eclipse IDE.ADT extends the capabilities of Eclipse to let you quickly set up new Android projects, create an application UI, add packages based on the Android Framework API, debug your applications using the Android SDK tools, and even export signed (or unsigned) .apk files in order to distribute your application.

Java Development Toolkit: A Java Development Kit (JDK) is a program development environment for writing Java applets and applications. It consists of a runtime environment that "sits on top" of the operating system layer as well as the tools and programming that developers need to compile, debug, and run applets and applications written in the Java language.

Setting Class Path: Class path is a parameter—set either on the command-line, or through an environment variable—that tells the Java Virtual Machine or the compiler where to look for user-defined classes and packages.


Posted by, Vinit Sansare | Write at - tanmay.patange@gmail.com

Comments

Popular posts from this blog

Webcam Toy: Digital Effects & Filters To Use With Webcam

Using webcam is always fun but using it with some cool effects is more entertaining, isn't it? 'Webcam Toy' extension for chrome allows users to explore 60 fun digital effects and filters to use with their webcam. You can play with loads of fun camera effects and filters, take photos, download to save on your computer or post them straight to Twitter and Facebook. How to use Webcam Toy? First, you need to allow access to your web camera when prompted. After that, choose your webcam from the list available. Then, choose a type of effect from the menu in the lower half of the screen by pressing the left or right arrows. Finally, take a picture by pressing the camera button, then choose to download or share.          Keyboard shortcut keys in the App: Arrow keys - Go to previous/next effect. 'G' - Show the Grid view, where you can see 9 effects at once. 'I' - Show the Info (settings) menu. 'S' - Square the photo (good for avatar/p...

Beta Updated to 23.0.1271.94 for Chrome OS

The Beta channel has been updated to 23.0.1271.94 (Platform version 2913.224.0) for all Chrome OS devices. This build contains a number of stability fixes. Release highlights: Pepper Flash updated to release 11.3.31.519 ARM Network stability changes If you find new issues, please let them know by visiting their Chrome build developers  help site or filing a bug . If you are interested in switching channels, then just follow  Find out how. You can even submit your feedback feedback using ‘Report an issue...’ in the Chrome menu (3 horizontal bars in the upper right corner of the browser). Update has been posted by - Josafat Garcia and Ben Henry, Google Chrome Source: [ Google Chrome Releases ]

Lets get inside the overview of Android

Android is a software stack for portable devices such as mobiles and tablets. The Android operating system is based on modified Linux kernel. The Android developer community extends the functionality of the devices beyond the stock applications. Currently more than hundred thousand Android apps are available in the Google Play Store. Coding for these applications is mainly done in Java using Google-developed Java libraries. The Android platform is coded in C for its core, C++ for third party libraries, and Java for the user interface. Most of the coding is stable under the Apache license as free and open source software. The recent stable release for the Android operating system is an Android 4.1 Jelly Bean, for Smartphones and Tablets. It supports ARM, MIPS, and Power and x86 platforms. Android's open source stack runs on a Java-based, object oriented application framework. It can be operate on the Java core libraries running on the Dalvik Virtual Machine (VM). Prior to ...