Search Gradle plugins

Owner: Akram

Single source of truth for Kotlin Multiplatform app configuration (identity, version, bundle ids, locales, launcher assets, generated BuildConfig) propagated to Android + iOS.

https://github.com/yuroyami/KiteSSOT

Sources: https://github.com/yuroyami/KiteSSOT.git

Version 2.0.0 (latest)

Created 22 July 2026.

Single source of truth for Kotlin Multiplatform app configuration (identity, version, bundle ids, locales, launcher assets, generated BuildConfig) propagated to Android + iOS.

Add this plugin to your build using the plugins DSL:

plugins {
  id("io.github.yuroyami.kitessot") version "2.0.0"
}

See also:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("io.github.yuroyami.kitessot:io.github.yuroyami.kitessot.gradle.plugin:2.0.0")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("io.github.yuroyami.kitessot")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("io.github.yuroyami.kitessot:io.github.yuroyami.kitessot.gradle.plugin:2.0.0")
      }
    }
    
    apply(plugin = "io.github.yuroyami.kitessot")
  • Applying plugins to all subprojects .