搜索 Gradle 插件

au.strapp.strapp-ui

所有者: 布莱恩·皮尔逊

将您的原生移动UI截图,并在一个地方查看它们。

https://strapp.au

来源: https://github.com/strapp-au/strapp-ui

版本 22.12.2 (最新版本)

22.12.2

创建时间:2022年12月29日。

将您的原生移动UI截图,并在一个地方查看它们。

使用 插件 DSL

plugins {
  id("au.strapp.strapp-ui") version "22.12.2"
}

使用 旧版插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("au.strapp:android-plugin:22.12.2")
  }
}

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

使用 插件 DSL

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

使用 旧版插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "au.strapp:android-plugin:22.12.2"
  }
}

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

了解如何将插件应用到子项目中