Search Gradle plugins

Owner: korilin

KMP plugin and runtime for generating strongly typed Compose Multiplatform resources from Android style resource files .

https://github.com/szkug/comnix/tree/main/libs/resource

Sources: https://github.com/szkug/comnix

Version 3.0.0 (latest)

Created 28 July 2026.

KMP plugin and runtime for generating strongly typed Compose Multiplatform resources from Android style resource files .

Add this plugin to your build using the plugins DSL:

plugins {
  id("cn.szkug.comnix.resources") version "3.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("cn.szkug.comnix.resources:cn.szkug.comnix.resources.gradle.plugin:3.0.0")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("cn.szkug.comnix.resources")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("cn.szkug.comnix.resources:cn.szkug.comnix.resources.gradle.plugin:3.0.0")
      }
    }
    
    apply(plugin = "cn.szkug.comnix.resources")
  • Applying plugins to all subprojects .