groovyx.grooid.groovy-android
Adds support for the Groovy language to Android
https://github.com/groovy/groovy-android-gradle-plugin
Add this plugin to your build using the plugins DSL:
plugins {
id("groovyx.grooid.groovy-android") version "0.3.6"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("groovyx.grooid.groovy-android:groovyx.grooid.groovy-android.gradle.plugin:0.3.6") }
It can then be applied in the precompiled script plugin:plugins { id("groovyx.grooid.groovy-android") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("groovyx.grooid.groovy-android:groovyx.grooid.groovy-android.gradle.plugin:0.3.6") } } apply(plugin = "groovyx.grooid.groovy-android")
- Applying plugins to all subprojects .