au.strapp.strapp-ui
Owner:
Bren Pearson
Take snapshots of your native mobile UI and see them in one place.
Version 22.12.2 (latest)
Created 29 December 2022.
Take snapshots of your native mobile UI and see them in one place.
Using the plugins DSL:
plugins {
id("au.strapp.strapp-ui") version "22.12.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("au.strapp:android-plugin:22.12.2")
}
}
apply(plugin = "au.strapp.strapp-ui")
Using the plugins DSL:
plugins {
id "au.strapp.strapp-ui" version "22.12.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "au.strapp:android-plugin:22.12.2"
}
}
apply plugin: "au.strapp.strapp-ui"