com.comuto.screenshots
Owner: Mouna Cheikhna
Automate taking screenshots on Android
Sources: https://github.com/blablacar
Version 0.2.8.4 (latest)
0.2.8.4
Created 09 November 2016.
This plugin version will no longer resolve after JCenter becomes a permanent redirect to Maven Central as it uses dependencies only found in JCenter. See the following blog post for details: https://blog.gradle.org/portal-jcenter-impact
Automate taking screenshots on Android
Using the plugins DSL:
plugins {
id("com.comuto.screenshots") version "0.2.8.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.comuto.screenshots:screenshots-plugin:0.2.8.4")
}
}
apply(plugin = "com.comuto.screenshots")
Using the plugins DSL:
plugins {
id "com.comuto.screenshots" version "0.2.8.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.comuto.screenshots:screenshots-plugin:0.2.8.4"
}
}
apply plugin: "com.comuto.screenshots"