Search Gradle plugins

Version 1.0.5 (latest)

1.0.5

Created 27 October 2018.

Generate constants with kotlin's object

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.github.kukuhyoniatmoko.buildconfigkotlin") version "1.0.5"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.com.github.kukuhyoniatmoko:buildconfigkotlin:1.0.5")
      }
    }
    
    apply(plugin = "com.github.kukuhyoniatmoko.buildconfigkotlin")
  • Applying plugins to all subprojects .