com.yashodhan.copytranslation
Owner: Yashodhan Divakaran
Copy string translation from translated file to respective strings.xml of android project
Version 1.9 (latest)
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.9"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("com.yashodhan.copytranslation:com.yashodhan.copytranslation.gradle.plugin:1.9") }
It can then be applied in the precompiled script plugin:plugins { id("com.yashodhan.copytranslation") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.yashodhan.copytranslation:com.yashodhan.copytranslation.gradle.plugin:1.9") } } apply(plugin = "com.yashodhan.copytranslation")
- Applying plugins to all subprojects .