io.github.usefulness.screenshot-testing-plugin
所有者: Mateusz Kwieciński
在Android仪器测试期间生成快速确定的截图。插件支持配置缓存!
https://github.com/usefulness/screenshot-tests-for-android/
源代码: https://github.com/usefulness/screenshot-tests-for-android.git
使用 插件DSL
plugins {
id("io.github.usefulness.screenshot-testing-plugin") version "1.2.0"
}
使用 旧插件应用程序
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("io.github.usefulness:screenshot-testing-plugin:1.2.0")
}
}
apply(plugin = "io.github.usefulness.screenshot-testing-plugin")
使用 插件DSL
plugins {
id "io.github.usefulness.screenshot-testing-plugin" version "1.2.0"
}
使用 旧插件应用程序
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "io.github.usefulness:screenshot-testing-plugin:1.2.0"
}
}
apply plugin: "io.github.usefulness.screenshot-testing-plugin"