com.yashodhan.copytranslation
所有者: Yashodhan Divakaran
将翻译好的字符串从翻译文件复制到相应的 android 项目的 strings.xml 文件中
使用 plugins DSL
plugins {
id("com.yashodhan.copytranslation") version "1.9"
}
使用 旧版插件应用程序
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.yashodhan:AndroidCopyTranslationPlugin:1.9")
}
}
apply(plugin = "com.yashodhan.copytranslation")
使用 plugins DSL
plugins {
id "com.yashodhan.copytranslation" version "1.9"
}
使用 旧版插件应用程序
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.yashodhan:AndroidCopyTranslationPlugin:1.9"
}
}
apply plugin: "com.yashodhan.copytranslation"