Search Gradle plugins

com.yashodhan.copytranslation

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

Version 1.2

Created 06 August 2015.

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

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.yashodhan:AndroidCopyString:1.2")
  }
}

apply(plugin = "com.yashodhan.copytranslation")

Using the plugins DSL:

plugins {
  id "com.yashodhan.copytranslation" version "1.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.yashodhan:AndroidCopyString:1.2"
  }
}

apply plugin: "com.yashodhan.copytranslation"

Learn how to apply plugins to subprojects