Search Gradle plugins

co.thebeat.localization

Interact with localization providers (such as Transifex) and automate downloading localized files (such as string.xml for android applications.

https://github.com/beatlabs/gradle-localization-plugin

Sources: https://github.com/beatlabs/gradle-localization-plugin

Version 0.4.1 (latest)

Created 21 April 2020.

Interact with localization providers (such as Transifex) and automate downloading localized files (such as string.xml for android applications).

Using the plugins DSL:

plugins {
  id("co.thebeat.localization") version "0.4.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.co.thebeat.localization:localization-plugin:0.4.1")
  }
}

apply(plugin = "co.thebeat.localization")

Using the plugins DSL:

plugins {
  id "co.thebeat.localization" version "0.4.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.co.thebeat.localization:localization-plugin:0.4.1"
  }
}

apply plugin: "co.thebeat.localization"

Learn how to apply plugins to subprojects