搜索Gradle插件

ch.hippmann.localizer

所有者: Cedric

用于生成Android项目和小的Kotlin多平台项目本地化文件的Gradle插件

https://github.com/chippmann/localizer

源码:https://github.com/chippmann/localizer.git

版本 1.0.3 (最新)

1.0.3

创建于2023年11月27日。

用于生成Android项目和小的Kotlin多平台项目本地化文件的Gradle插件

使用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"

学习如何将插件应用于子项目