Search Gradle plugins

com.quadible.sherlockplugin

A plugin that helps us to record screenshots for Android apps (View-Based or Jetpack Compose UIs) and and compare them with previous version to check if unwanted changes were introduced.

https://github.com/St4B/Sherlock

Sources: https://github.com/St4B/Sherlock

Version 1.0 (latest)

Created 07 November 2020.

A plugin that helps us to record screenshots for Android apps (View-Based or Jetpack Compose UIs) and and compare them with previous version to check if unwanted changes were introduced.

Using the plugins DSL:

plugins {
  id("com.quadible.sherlockplugin") version "1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.quadible.sherlockplugin:sherlock-plugin:1.0")
  }
}

apply(plugin = "com.quadible.sherlockplugin")

Using the plugins DSL:

plugins {
  id "com.quadible.sherlockplugin" version "1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.quadible.sherlockplugin:sherlock-plugin:1.0"
  }
}

apply plugin: "com.quadible.sherlockplugin"

Learn how to apply plugins to subprojects