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)
Created 14 January 2019.
Android screenshot testing plugin
Add this plugin to your build using the plugins DSL:
plugins {
id("com.laimiux.shot") version "2.1.2"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("com.laimiux.shot:com.laimiux.shot.gradle.plugin:2.1.2") }
It can then be applied in the precompiled script plugin:plugins { id("com.laimiux.shot") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.laimiux.shot:com.laimiux.shot.gradle.plugin:2.1.2") } } apply(plugin = "com.laimiux.shot")
- Applying plugins to all subprojects .