Search Gradle plugins

Version 1.0.2 (latest)

1.0.2

Created 17 October 2022.

Gradle plugin which validates placeholders from translated strings.xml files by comparing them with main strings.xml file.

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.appunite.placeholdersvalidator") version "1.0.2"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.appunite.placeholdersvalidator:placeholders-validator:1.0.2")
      }
    }
    
    apply(plugin = "com.appunite.placeholdersvalidator")
  • Applying plugins to all subprojects .