Search Gradle plugins

io.reconquest.gradle-android-eclipse

A Gradle plug-in that enables generation of Eclipse project files (.project and .classpath) to enable use of the Eclipse IDE for Android projects. Correctly adds Android AAR dependencies to the classpath, works with the new Android build system.

https://github.com/reconquest/gradle-android-eclipse

Sources: https://github.com/reconquest/gradle-android-eclipse.git

Version 1.1 (latest)

1.1

Created 08 October 2019.

A Gradle plug-in that enables generation of Eclipse project files (.project and .classpath) to enable use of the Eclipse IDE for Android projects. Correctly adds Android AAR dependencies to the classpath, works with the new Android build system.

Add this plugin to your build using the plugins DSL:

plugins {
  id("io.reconquest.gradle-android-eclipse") version "1.1"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.io.reconquest.gradle-android-eclipse:gradle-android-eclipse:1.1")
      }
    }
    
    apply(plugin = "io.reconquest.gradle-android-eclipse")
  • Applying plugins to all subprojects .