Search Gradle plugins

com.yashodhan.copytranslation

Copy string translation from translated file to respective strings.xml of android project

Version 1.4

1.4

Created 06 August 2015.

Copy string translation from translated file to respective strings.xml of android project

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.yashodhan.copytranslation") version "1.4"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.com.yashodhan:AndroidCopyString:1.4")
      }
    }
    
    apply(plugin = "com.yashodhan.copytranslation")
  • Applying plugins to all subprojects .