io.screenshotbot.plugin
Owner: Arnold Noronha
Automates most of the integration with Screenshotbot for popular Android screenshot testing libraries.
Sources: https://github.com/screenshotbot/screenshotbot-gradle-plugin
Version 1.11
1.11
Created 15 May 2024.
Automates most of the integration with Screenshotbot for popular Android screenshot testing libraries.
Using the plugins DSL:
plugins {
id("io.screenshotbot.plugin") version "1.11"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.screenshotbot:plugin:1.11")
}
}
apply(plugin = "io.screenshotbot.plugin")
Using the plugins DSL:
plugins {
id "io.screenshotbot.plugin" version "1.11"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.screenshotbot:plugin:1.11"
}
}
apply plugin: "io.screenshotbot.plugin"