Eclipse is a multi-language software development environment comprising an integrated development environment (IDE) and an extensible plug-in system. It is written mostly in Java and can be used to develop applications in Java and, by means of various plug-ins, other programming languages including Ada, C, C++, COBOL, Perl, PHP, Python, Ruby (including Ruby on Rails framework), Scala, Clojure, and Scheme. The IDE is often called Eclipse ADT (Ada Development Toolkit) for Ada, Eclipse CDT for C/C++, Eclipse JDT for Java, and Eclipse PDT for PHP. For the sake of this tutorial we will be using Eclipse to Develop Android Apps through plugins. You must login or register to view this content.
First of all you are going to want to go tohttps://www.eclipse.org/downloads/ and download eclipse, either the Java EE IDE or the classic version, Galileo, helios, indigo, etc doesnt matter what version. You must login or register to view this content.
You are going to then select 64-bit or 32-bit and download.
You should save it to your desktop and then extract it to a Folder and the contents should look like this: You must login or register to view this content.
Next you should make sure that you have a properly working version of Java Development Kit(JDK). Goto You must login or register to view this content. to download the one on the left.You must login or register to view this content.
Now we are going to download the SDK(Software Development Kit)
You can get that here: You must login or register to view this content.
I suggest downloading and running the recommended one as you won't need to unzip or unpack anything. When installing and it asks you where to install to make sure you remember the directory you save it in because you will need it later.You must login or register to view this content.
Now you should start up Eclipse by opening the folder you extracted and double clicking on the Eclipse Application in there. Once it's all loaded up it will want you to create a workspace. To do so just follow the onscreen instructions. You must login or register to view this content.
Downloading the ADT Plugin
When in Eclipse go to Help>Install New Software
Then Click on ADD in the top right
In the Dialog that appears enter ADT Plugin for name and this url for the location:
Click ok
Check the box next to Developer Tools then next
You will see a list of tool, click next
Accept the Agreement and then Finish You must login or register to view this content.
Setting SDK location
Remember earlier when we downloaded the SDK?
Well now is when you need it's location
Go to Window>Preferences, then click android and locate the directory of the SDK you downloaded earlier. Click Apply and then OK You must login or register to view this content.
You are now set and ready to Develop your very own Applications, look below for a nbeginners tutorial on how to create an app.
Creating a Project
Go to File>New>Project You must login or register to view this content.
Click on Android Project, then Next You must login or register to view this content.
Maintain something along the lines of mine for this next part: You must login or register to view this content.
Here you can develop your app along with code: You must login or register to view this content.