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)

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.

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.io.reconquest.gradle-android-eclipse:gradle-android-eclipse:1.1")
  }
}

apply(plugin = "io.reconquest.gradle-android-eclipse")

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.io.reconquest.gradle-android-eclipse:gradle-android-eclipse:1.1"
  }
}

apply plugin: "io.reconquest.gradle-android-eclipse"

Learn how to apply plugins to subprojects