Search Gradle plugins

io.realm.kotlin

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 3.0.0 (latest)

3.0.0

Created 03 October 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 "3.0.0"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("io.realm.kotlin:gradle-plugin:3.0.0")
      }
    }
    
    apply(plugin = "io.realm.kotlin")
  • Applying plugins to all subprojects .