Search Gradle plugins

dev.icerock.mobile.multiplatform.apple-framework

After enable this plugin while using framework configuration you can add dependencies to export just like in iOS framework.

https://github.com/icerockdev/mobile-multiplatform-gradle-plugin

Sources: https://github.com/icerockdev/mobile-multiplatform-gradle-plugin

Version 0.14.4 (latest)

0.14.4

Created 29 September 2024.

After enable this plugin while using framework configuration you can add dependencies to export just like in iOS framework.

Add this plugin to your build using the plugins DSL:

plugins {
  id("dev.icerock.mobile.multiplatform.apple-framework") version "0.14.4"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("dev.icerock:mobile-multiplatform:0.14.4")
      }
    }
    
    apply(plugin = "dev.icerock.mobile.multiplatform.apple-framework")
  • Applying plugins to all subprojects .