Search Gradle plugins

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)

Created 27 November 2023.

Gradle plugin for generating localization files for Android projects and small Kotlin Multiplatform projects

Add this plugin to your build using the plugins DSL:

plugins {
  id("ch.hippmann.localizer") version "1.0.3"
}

See also:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("ch.hippmann.localizer:ch.hippmann.localizer.gradle.plugin:1.0.3")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("ch.hippmann.localizer")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("ch.hippmann.localizer:ch.hippmann.localizer.gradle.plugin:1.0.3")
      }
    }
    
    apply(plugin = "ch.hippmann.localizer")
  • Applying plugins to all subprojects .