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 0.0.1

Created 11 May 2022.

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

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("ch.hippmann:localizer:0.0.1")
  }
}

apply(plugin = "ch.hippmann.localizer")

Using the plugins DSL:

plugins {
  id "ch.hippmann.localizer" version "0.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "ch.hippmann:localizer:0.0.1"
  }
}

apply plugin: "ch.hippmann.localizer"

Learn how to apply plugins to subprojects