io.realm.kotlin
Owner:
MongoDB Realm
Gradle plugin for the Realm Kotlin SDK, supporting Android and Multiplatform. Realm is a mobile database: Build better apps faster.
https://github.com/realm/realm-kotlin
Version 1.9.0 (latest)
Created 23 May 2023.
Gradle plugin for the Realm Kotlin SDK, supporting Android and Multiplatform. Realm is a mobile database: Build better apps faster.
Using the plugins DSL:
plugins {
id("io.realm.kotlin") version "1.9.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.realm.kotlin:gradle-plugin:1.9.0")
}
}
apply(plugin = "io.realm.kotlin")
Using the plugins DSL:
plugins {
id "io.realm.kotlin" version "1.9.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.realm.kotlin:gradle-plugin:1.9.0"
}
}
apply plugin: "io.realm.kotlin"