搜索 Gradle 插件

版本 2.1.2 (最新版)

2.1.2

创建于 2019年1月14日。

Android 截图测试插件

使用 插件 DSL

plugins {
  id("com.laimiux.shot") version "2.1.2"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.laimiux:shot:2.1.2")
  }
}

apply(plugin = "com.laimiux.shot")

使用 插件 DSL

plugins {
  id "com.laimiux.shot" version "2.1.2"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.laimiux:shot:2.1.2"
  }
}

apply plugin: "com.laimiux.shot"

学习如何将插件应用于子项目