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
Sources: https://github.com/realm/realm-kotlin
Version 1.14.1
Created 19 March 2024.
Gradle plugin for the Realm Kotlin SDK, supporting Android and Multiplatform. Realm is a mobile database: Build better apps faster.
Add this plugin to your build using the plugins DSL:
plugins {
id("io.realm.kotlin") version "1.14.1"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("io.realm.kotlin:io.realm.kotlin.gradle.plugin:1.14.1") }
It can then be applied in the precompiled script plugin:plugins { id("io.realm.kotlin") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("io.realm.kotlin:io.realm.kotlin.gradle.plugin:1.14.1") } } apply(plugin = "io.realm.kotlin")
- Applying plugins to all subprojects .