com.rickclephas.kmp.nativecoroutines
Owner: Rick Clephas
Swift library for Kotlin Coroutines
https://github.com/rickclephas/KMP-NativeCoroutines
Sources: https://github.com/rickclephas/KMP-NativeCoroutines
Version 0.12.3-new-mm
0.12.3-new-mm
Created 09 June 2022.
Swift library for Kotlin Coroutines
Using the plugins DSL:
plugins {
id("com.rickclephas.kmp.nativecoroutines") version "0.12.3-new-mm"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.rickclephas.kmp:kmp-nativecoroutines-gradle-plugin:0.12.3-new-mm")
}
}
apply(plugin = "com.rickclephas.kmp.nativecoroutines")
Using the plugins DSL:
plugins {
id "com.rickclephas.kmp.nativecoroutines" version "0.12.3-new-mm"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.rickclephas.kmp:kmp-nativecoroutines-gradle-plugin:0.12.3-new-mm"
}
}
apply plugin: "com.rickclephas.kmp.nativecoroutines"