Search Gradle plugins

world.betterme.translationsvalidator

Owner: Team

Gradle plugin which validates placeholders from translated strings.xml files by comparing them with main strings.xml file and report issues to slack channel

https://github.com/betterme-dev/translations-validator-plugin-android

Sources: https://github.com/betterme-dev/translations-validator-plugin-android

Version 1.1.0 (latest)

1.1.0

Created 31 October 2024.

Gradle plugin which validates placeholders from translated strings.xml files by comparing them with main strings.xml file and report issues to slack channel

Add this plugin to your build using the plugins DSL:

plugins {
  id("world.betterme.translationsvalidator") version "1.1.0"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("world.betterme.translationsvalidator:translations-validator-android:1.1.0")
      }
    }
    
    apply(plugin = "world.betterme.translationsvalidator")
  • Applying plugins to all subprojects .