Google ships a small number of plugins/features in form of Android Bundle which is custom tailored for Android Development. Fedora already ships an updated version of Eclipse with similar feature set. Each Eclipse packages in Fedora is a groups of plugins known as Bundle. This means we will have everything Android Bundle offers and a few more innocuous plugins. You will have to separately download ADT Plugin.
yum install eclipse-platform eclipse-cdt eclipse-emf-core eclipse-egit eclipse-jgit
Following is the complete set of features shipped in Android bundle.
org.eclipse.platform
org.eclipse.rcp
org.eclipse.help
org.eclipse.cdt
org.eclipse.cdt.gdb
org.eclipse.emf.common
org.eclipse.emf.ecore
org.eclipse.egit
org.eclipse.egit.import
org.eclipse.jgit
AOSP - ADT Package - com.android.ide.eclipse.adt.package.feature
AOSP - Hierarchy Viewer - com.android.ide.eclipse.hierarchyviewver.feature
AOSP - Dalvik Debug Monitor Serive - com.android.ide.eclipse.ddms.feature
AOSP - Traceview - com.android.ide.eclipse.traceview.feature
AOSP - Android Development Toolkit - com.android.eclipse.adt.feature
You can use repoquery
to find out which package contains which feature via osgi
.
$ repoquery -q --whatprovides "osgi(org.eclipse.platform)"
eclipse-platform-1:4.4.1-3.fc21.x86_64
$ repoquery -q --whatprovides "osgi(org.eclipse.egit)"
eclipse-egit-0:3.5.0-1.fc21.noarch
$ repoquery -q --whatprovides "osgi(org.eclipse.jgit)"
eclipse-jgit-0:3.5.0-1.fc21.noarch
jgit-0:3.5.0-1.fc21.noarch
$ repoquery -q --whatprovides "osgi(org.eclipse.emf.common)"
eclipse-emf-core-1:2.10.1-1.fc21.noarch
$ repoquery -q --whatprovides "osgi(org.eclipse.cdt)"
eclipse-cdt-1:8.5.0-3.fc21.x86_64
Source
I don't think we have android sdk packaged yet. This wiki page will help you https://fedoraproject.org/wiki/HOWTO_Setup_Android_Development
Sorry I should have been clear. I am not looking for packaged version of Android SDK. Android Bundle packages Eclipse Juno and Android SDK. I just want to use Eclipse provided by Fedora.
If I am still not wrong in understanding your question then you just want to know what fedora package gives you eclipse. If that is correct then answer is eclipse-platform
Do you use Android Bundle? Android bundle is just Eclipse and a set of plugins that are optimal for Android development. I am looking for package name of Eclipse and those set of plugins.
You want eclipse + ADT (android developer tools built into eclipse). The version of Eclipse in Fedora does not have these as far as I know, and the ADT plugins aren't packaged up for Fedora either. ( I see nothing android related in the output of
yum list eclipse*
)