com.betomorrow.gradle.wording
Owner: Gauthier
Plugin to import wording from Google Sheet then integrate it in standard translations files.
https://github.com/oliviergauthier/gradle-wording-plugin
Sources: https://github.com/oliviergauthier/gradle-wording-plugin
Version 3.0.2 (latest)
3.0.2
Created 28 February 2023.
Plugin to import wording from Google Sheet then integrate it in standard translations files.
Using the plugins DSL:
plugins {
id("com.betomorrow.gradle.wording") version "3.0.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.betomorrow.gradle:gradle-android-wording-plugin:3.0.2")
}
}
apply(plugin = "com.betomorrow.gradle.wording")
Using the plugins DSL:
plugins {
id "com.betomorrow.gradle.wording" version "3.0.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.betomorrow.gradle:gradle-android-wording-plugin:3.0.2"
}
}
apply plugin: "com.betomorrow.gradle.wording"