Search Gradle plugins

io.github.bomiyr.runtime-config

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)

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"

Learn how to apply plugins to subprojects