au.strapp.strapp-ui
Owner: Bren Pearson
Take snapshots of your native mobile UI and see them in one place.
Sources: https://github.com/strapp-au/strapp-ui
Version 22.12.2 (latest)
22.12.2
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"