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)
0.1.1
Created 23 September 2020.
A plugin to generate Kotlin and Swift enum classes for Flutter binding code.
Using the plugins DSL:
plugins {
id("com.liewjuntung.enum_generator") version "0.1.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.liewjuntung:enum-generator:0.1.1")
}
}
apply(plugin = "com.liewjuntung.enum_generator")
Using the plugins DSL:
plugins {
id "com.liewjuntung.enum_generator" version "0.1.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.liewjuntung:enum-generator:0.1.1"
}
}
apply plugin: "com.liewjuntung.enum_generator"