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-alpha12 (latest)

Created 22 September 2022.

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-alpha12"
}

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