Skip to main content

Eclipse Cannot Install Android ADT plugin


If Eclipse shows error like this when installing  Android ADT plugin

Software being installed: Android Development Tools 11.0.0.v201105251008-128486 (com.android.ide.eclipse.adt.feature.group 11.0.0.v201105251008-128486) Missing requirement: Android Development Tools 11.0.0.v201105251008-128486 (com.android.ide.eclipse.adt.feature.group 11.0.0.v201105251008-128486) requires 'org.eclipse.wst.sse.core 0.0.0' but it could not be found


It can be resolved like this

1.Goto Help->Install New Software.

2.Click On "Available Software Sites".

3.Click ADD and add location (if the eclipse version is galileo )
      "http://download.eclipse.org/releases/galileo "

5.Now try to install Android ADT plugin it will work .

Comments

Popular posts

Android Sqlite and ListView Example

This is simple application which insert data into Sqlite database --and shows the data  from the database in a ListView ListView is not used in android Anymore . We use RecyclerView and CardView   in Android RecyclerView Demo is available on the following link http://androidtuts4u.blogspot.in/2017/04/android-recyclerview-example.html RecyclerView with CardView Demo is available on the following link http://androidtuts4u.blogspot.in/2017/09/android-card-view-example.html This  is the first Activity of application which shows data from database in listview. Register here buton will start a Registration Activity. Submit button will add data to database and show it in the ListView of MainActivity. Update can be performed by clicking ListView items.     you can download the source code of this project from  google drive   https://drive.google.com/folderview?id=0BySLpWhqmbbdS0dtT1R2TXdBWEE&usp=sharing click on the abov...

Navigation Component Demo With Quizz Application

This is a simple Application demonstrating the use of android navigation component . Screenshots of the apps are The Navigation components consist of Navigation graph , navHost and NavController Navigation graph is an XML file which contains all the information about destinations(destinations are different fragments) and  paths user can take in the app.  Navigation graph of our app is you can download the full source code of this app from my Github https://github.com/arunkfedex/QuizzDemoNavigation Working video of the Application

Android Shared Preference Tutorial

The sharedPreferernce  provides a general framework that allows you to save and retrieve persistent key-value pairs of primitive data types. You can use sharedPreferences   to save any primitive data: booleans, floats, ints, longs, and strings. This data will persist across user sessions (even if your application is killed). to know more about   Refer   sharedPreference you can download the source code of this project from  google drive  https://drive.google.com/folderview?id=0BySLpWhqmbbdRXZxd0ZveHllcG8&usp=sharing click on the above link ->sign into  your  google account ->add this to your google drive -> open it in google drive and download it. Following is the demo application using SharedPrefence. This application is just used to set and get name.Value that you set will be persistent even if you close the application. the value is saved in a xml file. you can view this file in eclipse . open  DDMS go to ...