Search Gradle plugins

Version 0.1.18

Created 15 June 2016.

Frame your android screenshots.

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects