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.5
Created 20 March 2024.
                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.5"
}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.5") }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.5") } } apply(plugin = "io.github.usefulness.screenshot-testing-plugin")
- Applying plugins to all subprojects .