io.reconquest.gradle-android-eclipse
Owner: Egor Kovetskiy
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.
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"