co.thebeat.localization
Owner: Chris Margonis
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.0
0.4.0
Created 07 March 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.0"
}
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.0")
}
}
apply(plugin = "co.thebeat.localization")
Using the plugins DSL:
plugins {
id "co.thebeat.localization" version "0.4.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.co.thebeat.localization:localization-plugin:0.4.0"
}
}
apply plugin: "co.thebeat.localization"