搜索 Gradle 插件

版本 1.4.0 (最新版)

1.4.0

创建于 2022 年 8 月 14 日。

Prefiller 是一个 Gradle 插件,可以在编译时生成预填充的 Room 数据库。

插件 DSL 中使用

plugins {
  id("io.github.simonschiller.prefiller") version "1.4.0"
}

旧插件应用程序 中使用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("io.github.simonschiller:prefiller:1.4.0")
  }
}

apply(plugin = "io.github.simonschiller.prefiller")

插件 DSL 中使用

plugins {
  id "io.github.simonschiller.prefiller" version "1.4.0"
}

旧插件应用程序 中使用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "io.github.simonschiller:prefiller:1.4.0"
  }
}

apply plugin: "io.github.simonschiller.prefiller"

了解如何将插件应用于子项目