app.futured.sheethappens
所有者: Futured
Gradle 插件,用于从 Google 表格生成 Android / KMP 字符串翻译
https://github.com/futuredapp/sheet-happens
来源: https://github.com/futuredapp/sheet-happens
使用 plugins DSL
plugins {
id("app.futured.sheethappens") version "1.0.0"
}
使用 旧插件应用程序
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("app.futured.sheethappens:plugin:1.0.0")
}
}
apply(plugin = "app.futured.sheethappens")
使用 plugins DSL
plugins {
id "app.futured.sheethappens" version "1.0.0"
}
使用 旧插件应用程序
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "app.futured.sheethappens:plugin:1.0.0"
}
}
apply plugin: "app.futured.sheethappens"