Search Gradle plugins

au.strapp.strapp-ui

Take snapshots of your native mobile UI and see them in one place.

https://strapp.au

Sources: https://github.com/strapp-au/strapp-ui

Version 22.9.0

Created 07 September 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.9.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("au.strapp:StrappPlugin:22.9.0")
  }
}

apply(plugin = "au.strapp.strapp-ui")

Using the plugins DSL:

plugins {
  id "au.strapp.strapp-ui" version "22.9.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "au.strapp:StrappPlugin:22.9.0"
  }
}

apply plugin: "au.strapp.strapp-ui"

Learn how to apply plugins to subprojects