Search Gradle plugins

Version 0.17.3

Created 04 December 2021.

Plugin to provide access to the resources on iOS & Android

Using the plugins DSL:

plugins {
  id("dev.icerock.mobile.multiplatform-resources") version "0.17.3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("dev.icerock.moko:resources-generator:0.17.3")
  }
}

apply(plugin = "dev.icerock.mobile.multiplatform-resources")

Using the plugins DSL:

plugins {
  id "dev.icerock.mobile.multiplatform-resources" version "0.17.3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "dev.icerock.moko:resources-generator:0.17.3"
  }
}

apply plugin: "dev.icerock.mobile.multiplatform-resources"

Learn how to apply plugins to subprojects