Search Gradle plugins

dev.jamiecraane.plugins.kmmresources

Gradle plugin for generating localizable resources for Android and iOS in a Kotlin Multiplatform Mobile project for use in the UI, android, iOS and shared framework code.

https://github.com/jcraane/kmm-resources

Sources: https://github.com/jcraane/kmm-resources.git

Version 1.0.0-alpha11 (latest)

1.0.0-alpha11

Created 10 March 2023.

Gradle plugin for generating localizable resources for Android and iOS in a Kotlin Multiplatform Mobile project for use in the UI, android, iOS and shared framework code.

Add this plugin to your build using the plugins DSL:

plugins {
  id("dev.jamiecraane.plugins.kmmresources") version "1.0.0-alpha11"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("dev.jamiecraane.plugins:kmmresources:1.0.0-alpha11")
      }
    }
    
    apply(plugin = "dev.jamiecraane.plugins.kmmresources")
  • Applying plugins to all subprojects .