Search Gradle plugins

com.yashodhan.copytranslation

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

http://www.gradle.org/

Version 1.5

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.5"
}

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

apply plugin: "com.yashodhan.copytranslation"

Learn how to apply plugins to subprojects