Search Gradle plugins

dev.jamiecraane.plugins.kmmimages

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-images

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

Version 1.0.0-alpha07

1.0.0-alpha07

Created 18 July 2021.

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.kmmimages") version "1.0.0-alpha07"
}

See also:

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