com.yashodhan.copytranslation
Owner: Yashodhan Divakaran
Copy string translation from translated file to respective strings.xml of android project
Version 1.9 (latest)
1.9
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.9"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.yashodhan:AndroidCopyTranslationPlugin:1.9")
}
}
apply(plugin = "com.yashodhan.copytranslation")
Using the plugins DSL:
plugins {
id "com.yashodhan.copytranslation" version "1.9"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.yashodhan:AndroidCopyTranslationPlugin:1.9"
}
}
apply plugin: "com.yashodhan.copytranslation"