com.liewjuntung.enum_generator
Owner: Liew Jun Tung
A plugin to generate Kotlin and Swift enum classes for Flutter binding code.
https://github.com/LiewJunTung/Enum-Generator-Gradle-Plugin/
Sources: https://github.com/LiewJunTung/Enum-Generator-Gradle-Plugin/
Version 0.1.1 (latest)
Created 23 September 2020.
A plugin to generate Kotlin and Swift enum classes for Flutter binding code.
Add this plugin to your build using the plugins DSL:
plugins {
id("com.liewjuntung.enum_generator") version "0.1.1"
}
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("com.liewjuntung.enum_generator:com.liewjuntung.enum_generator.gradle.plugin:0.1.1") }
It can then be applied in the precompiled script plugin:plugins { id("com.liewjuntung.enum_generator") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.liewjuntung.enum_generator:com.liewjuntung.enum_generator.gradle.plugin:0.1.1") } } apply(plugin = "com.liewjuntung.enum_generator")
- Applying plugins to all subprojects .