io.github.usefulness.screenshot-testing-plugin
Owner: Mateusz Kwieciński
Generate fast deterministic screenshots during Android instrumentation tests. The plugin works Configuration Cache support!
https://github.com/usefulness/screenshot-tests-for-android/
Sources: https://github.com/usefulness/screenshot-tests-for-android.git
Version 0.17.2
Created 06 December 2023.
Generate fast deterministic screenshots during Android instrumentation tests. Configuration Cache compatibility included
Add this plugin to your build using the plugins DSL:
plugins {
id("io.github.usefulness.screenshot-testing-plugin") version "0.17.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("io.github.usefulness.screenshot-testing-plugin:io.github.usefulness.screenshot-testing-plugin.gradle.plugin:0.17.2") }
It can then be applied in the precompiled script plugin:plugins { id("io.github.usefulness.screenshot-testing-plugin") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("io.github.usefulness.screenshot-testing-plugin:io.github.usefulness.screenshot-testing-plugin.gradle.plugin:0.17.2") } } apply(plugin = "io.github.usefulness.screenshot-testing-plugin")
- Applying plugins to all subprojects .