io.github.bomiyr.runtime-config
Owner: Mikhail Bondar
RuntimeConfig is a replacement for Android BuildConfig, but without abi-change after changing field values
https://github.com/bomiyr/RuntimeConfig
Sources: https://github.com/bomiyr/RuntimeConfig.git
Version 1.0 (latest)
1.0
Created 28 October 2023.
RuntimeConfig is a replacement for Android BuildConfig, but without abi-change after changing field values
Using the plugins DSL:
plugins {
id("io.github.bomiyr.runtime-config") version "1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.bomiyr:plugin:1.0")
}
}
apply(plugin = "io.github.bomiyr.runtime-config")
Using the plugins DSL:
plugins {
id "io.github.bomiyr.runtime-config" version "1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.bomiyr:plugin:1.0"
}
}
apply plugin: "io.github.bomiyr.runtime-config"