搜索Gradle插件

版本 0.2.2 (最新版)

0.2.2

创建于 2016年7月22日。

框架您的Android屏幕截图。

使用 插件DSL

plugins {
  id("com.mounacheikhna.screenshots.frame") version "0.2.2"
}

使用 旧版插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.mounacheikhna.screenshots:frame-plugin:0.2.2")
  }
}

apply(plugin = "com.mounacheikhna.screenshots.frame")

使用 插件DSL

plugins {
  id "com.mounacheikhna.screenshots.frame" version "0.2.2"
}

使用 旧版插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.mounacheikhna.screenshots:frame-plugin:0.2.2"
  }
}

apply plugin: "com.mounacheikhna.screenshots.frame"

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