ch.hippmann.localizer
所有者: Cedric
用于生成Android项目和小的Kotlin多平台项目本地化文件的Gradle插件
https://github.com/chippmann/localizer
源码:https://github.com/chippmann/localizer.git
使用plugins DSL
plugins {
id("ch.hippmann.localizer") version "1.0.3"
}
使用传统插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("ch.hippmann:localizer:1.0.3")
}
}
apply(plugin = "ch.hippmann.localizer")
使用plugins DSL
plugins {
id "ch.hippmann.localizer" version "1.0.3"
}
使用传统插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "ch.hippmann:localizer:1.0.3"
}
}
apply plugin: "ch.hippmann.localizer"