Search Gradle plugins

Version 2.0.3

Created 15 September 2021.

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 "2.0.3"
}

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:2.0.3")
  }
}

apply(plugin = "com.betomorrow.gradle.wording")

Using the plugins DSL:

plugins {
  id "com.betomorrow.gradle.wording" version "2.0.3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.betomorrow.gradle:gradle-android-wording-plugin:2.0.3"
  }
}

apply plugin: "com.betomorrow.gradle.wording"

Learn how to apply plugins to subprojects