搜索 Gradle 插件

com.yashodhan.copytranslation

将翻译好的字符串从翻译文件复制到相应的 android 项目的 strings.xml 文件中

版本 1.9 (最新版)

1.9

创建于 2015年8月6日。

将翻译好的字符串从翻译文件复制到相应的 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"

学习如何将插件应用于子项目