First of all I would like to thank all the repliers here who has motivated me to move ahead and find the solution.. Thank you @karel for editing my question and turning it into meaningful and sensible...
I have got the answer to configure it...i will explain all the step by step to configure eclipse and android sdk...
1) download android sdk from the google site : http://developer.android.com/sdk/index.html
this will give u a folder named android-sdk after you extract it in any of your desired location...move on to the directory, /home/'usr'/Android/Sdk/tools and you will find the file named "android"....open your terminal (shortcut key is alt + ctrl + t) and paste the file in terminal and execute that file..(you can also do it going to terminal using 'cd' command) ....once you press enter you will have the sdk manager screen and download and install your desired packages...
2) Now time to configure java...most of the time your eclipse supports java 7 jdk ...to configure java...as i mentioned earlier open up your terminal and type: sudo apt-get install openjdk-7-jdk
, or what you can do is you can open your software center and type java runtime on the search bar and you can install it from there too...
to check whether you have configured your java or not , open up your terminal and write this code: java -version
and you will get output as shown below:
3)its time to download eclipse now and configure it with Android sdk..
open your software center and type eclipse..
after you install it, open your eclipse software...
just recalling it (you have now, android-sdk, java, and eclipse...)
so after you got all your files..you need to download the adt(Android Development Tool) plugin...(and this is where I got stuck)
4) you have your eclipse software now opened, so go to Help -> Install New Software
and you will get a screen for inputs
you will see a ADD button, click on it, and now you will be asked whether local or location, so in location type this address: https://dl-ssl.google.com/android/eclipse/
you will get the names of all the plugins available and from this list, find out Android Development Tool listed and click next till you download and install it restart your eclipse
5) now its time to point your eclipse to android sdk.
after you restart your eclipse it will ask you to point your sdk
click browse and point your directory till /home/'usr'/Android/Sdk
6) there you are, it will ask for further inputs from you and you can follow the screen.
7) you can also see the virtual device option in eclipse if you have configured eclipse properly
enjoy developing!! :-)
let me know if there are any issues faced...or if there is any mistake with these steps.
android
command inside the SDK. I knowadb
instead, so if you could point me where is the instruction to call that command, it'd be really helpful. Next, have you installed ADT plugins from Eclipse? After that, have you set the Android SDK path from the preference? – Andrew T. Mar 20 '15 at 18:00