搜索Gradle插件

com.github.dgmartin.Dragomock

所有者: Dan Martin

Dragomock 是一个模拟翻译生成器。它用于创建更自然的模拟翻译,从而为开发者提供更好的关于代码和UI在更自然本地化测试案例下如何表现的了解。它还可以用于演示应用程序的本地化功能。

https://github.com/dgmartin/Dragomock

来源: https://github.com/dgmartin/Dragomock

版本 0.09.00(最新版本)

0.09.00

创建于 2020年10月14日。

Dragomock 是一个模拟翻译生成器。它用于创建更自然的模拟翻译,从而为开发者提供更好的关于代码和UI在更自然本地化测试案例下如何表现的了解。它还可以用于演示应用程序的本地化功能。

使用插件DSL

plugins {
  id("com.github.dgmartin.Dragomock") version "0.09.00"
}

使用 旧插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("com.github.dgmartin:dragomock:0.09.00")
  }
}

apply(plugin = "com.github.dgmartin.Dragomock")

使用插件DSL

plugins {
  id "com.github.dgmartin.Dragomock" version "0.09.00"
}

使用 旧插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.github.dgmartin:dragomock:0.09.00"
  }
}

apply plugin: "com.github.dgmartin.Dragomock"

了解如何将插件应用于子项目