com.laimiux.shot
Owner: Laimonas Turauskas
Android screenshot testing plugin
http://www.github.com/laimiux/shot
Sources: https://github.com/laimiux/shot
Version 2.1.2 (latest)
2.1.2
Created 14 January 2019.
Android screenshot testing plugin
Using the plugins DSL:
plugins {
id("com.laimiux.shot") version "2.1.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.laimiux:shot:2.1.2")
}
}
apply(plugin = "com.laimiux.shot")
Using the plugins DSL:
plugins {
id "com.laimiux.shot" version "2.1.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.laimiux:shot:2.1.2"
}
}
apply plugin: "com.laimiux.shot"