ch.hippmann.localizer
Owner: Cedric
Gradle plugin for generating localization files for Android projects and small Kotlin Multiplatform projects
https://github.com/chippmann/localizer
Sources: https://github.com/chippmann/localizer.git
Version 1.0.3 (latest)
1.0.3
Created 27 November 2023.
Gradle plugin for generating localization files for Android projects and small Kotlin Multiplatform projects
Using the plugins DSL:
plugins {
id("ch.hippmann.localizer") version "1.0.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("ch.hippmann:localizer:1.0.3")
}
}
apply(plugin = "ch.hippmann.localizer")
Using the plugins DSL:
plugins {
id "ch.hippmann.localizer" version "1.0.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "ch.hippmann:localizer:1.0.3"
}
}
apply plugin: "ch.hippmann.localizer"