io.github.toxa2033.saved-state
Owner: Anton Nazarov
Kotlin compiler plugin generates support methods for use SaveStateHandle without constants and string variables.
https://github.com/Toxa2033/SavedStateCompilerPlugin
Sources: https://github.com/Toxa2033/SavedStateCompilerPlugin
Version 1.0.5 (latest)
1.0.5
Created 08 June 2022.
Kotlin compiler plugin generates support methods for use SaveStateHandle without constants and string variables.
Using the plugins DSL:
plugins {
id("io.github.toxa2033.saved-state") version "1.0.5"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.toxa2033.saved-state:gradle-plugin:1.0.5")
}
}
apply(plugin = "io.github.toxa2033.saved-state")
Using the plugins DSL:
plugins {
id "io.github.toxa2033.saved-state" version "1.0.5"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.toxa2033.saved-state:gradle-plugin:1.0.5"
}
}
apply plugin: "io.github.toxa2033.saved-state"