Search Gradle plugins

dev.icerock.mobile.multiplatform.ios-framework

Plugin will setup sync gradle tasks in group cocoapods for cocoapods integration. Example of podspec for integration here - https://github.com/icerockdev/moko-template/blob/master/mpp-library/MultiPlatformLibrary.podspec

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

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

Version 0.13.0

Created 18 January 2022.

Plugin will setup sync gradle tasks in group cocoapods for cocoapods integration. Example of podspec for integration here - https://github.com/icerockdev/moko-template/blob/master/mpp-library/MultiPlatformLibrary.podspec

Using the plugins DSL:

plugins {
  id("dev.icerock.mobile.multiplatform.ios-framework") version "0.13.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("dev.icerock:mobile-multiplatform:0.13.0")
  }
}

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

Using the plugins DSL:

plugins {
  id "dev.icerock.mobile.multiplatform.ios-framework" version "0.13.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "dev.icerock:mobile-multiplatform:0.13.0"
  }
}

apply plugin: "dev.icerock.mobile.multiplatform.ios-framework"

Learn how to apply plugins to subprojects