Search Gradle plugins

io.screenshotbot.plugin

Automates most of the integration with Screenshotbot for popular Android screenshot testing libraries.

https://screenshotbot.io

Sources: https://github.com/screenshotbot/screenshotbot-gradle-plugin

Version 1.9 (latest)

Created 20 November 2023.

Automates most of the integration with Screenshotbot for popular Android screenshot testing libraries.

Using the plugins DSL:

plugins {
  id("io.screenshotbot.plugin") version "1.9"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.screenshotbot:plugin:1.9")
  }
}

apply(plugin = "io.screenshotbot.plugin")

Using the plugins DSL:

plugins {
  id "io.screenshotbot.plugin" version "1.9"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.screenshotbot:plugin:1.9"
  }
}

apply plugin: "io.screenshotbot.plugin"

Learn how to apply plugins to subprojects