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.
Add this plugin to your build using the plugins DSL:
plugins {
id("au.strapp.strapp-ui") version "22.12.2"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts):dependencies { implementation("au.strapp.strapp-ui:au.strapp.strapp-ui.gradle.plugin:22.12.2") }It can then be applied in the precompiled script plugin:plugins { id("au.strapp.strapp-ui") } -
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("au.strapp.strapp-ui:au.strapp.strapp-ui.gradle.plugin:22.12.2") } } apply(plugin = "au.strapp.strapp-ui") - Applying plugins to all subprojects .