com.comuto.screenshots
Owner: Mouna Cheikhna
Automate taking screenshots on Android
Sources: https://github.com/blablacar
Using the plugins DSL:
plugins {
id("com.comuto.screenshots") version "0.1.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.comuto.screenshots:screenshots-plugin:0.1.3")
}
}
apply(plugin = "com.comuto.screenshots")
Using the plugins DSL:
plugins {
id "com.comuto.screenshots" version "0.1.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.comuto.screenshots:screenshots-plugin:0.1.3"
}
}
apply plugin: "com.comuto.screenshots"