com.jstarczewski.kstate.generate
Owner: Jan Starczewski
Plugin generates Swift wrappers needed for Kstate state management library to work. The code of the library is available in the same repository as the kstate-generate gradle plugin.
https://github.com/jstarczewski/kstate
Sources: https://github.com/jstarczewski/kstate
Version 0.0.3 (latest)
0.0.3
Created 13 February 2023.
Plugin generates Swift wrappers needed for Kstate state management library to work. The code of the library is available in the same repository as the kstate-generate gradle plugin.
Using the plugins DSL:
plugins {
id("com.jstarczewski.kstate.generate") version "0.0.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.jstarczewski.kstate:kstate-generate:0.0.3")
}
}
apply(plugin = "com.jstarczewski.kstate.generate")
Using the plugins DSL:
plugins {
id "com.jstarczewski.kstate.generate" version "0.0.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.jstarczewski.kstate:kstate-generate:0.0.3"
}
}
apply plugin: "com.jstarczewski.kstate.generate"