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