com.greensopinion.gradle-android-eclipse
Owner: David Green
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/greensopinion/gradle-android-eclipse
Sources: https://github.com/greensopinion/gradle-android-eclipse.git
Version 1.1 (latest)
1.1
Created 14 October 2018.
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("com.greensopinion.gradle-android-eclipse") version "1.1"
}
See also:
-
The legacy method of plugin application.
buildscript { repositories { gradlePluginPortal() } dependencies { classpath("gradle.plugin.com.greensopinion.gradle-android-eclipse:gradle-android-eclipse:1.1") } } apply(plugin = "com.greensopinion.gradle-android-eclipse")
- Applying plugins to all subprojects .