Search Gradle plugins

Version 0.0.1-SNAPSHOT (latest)

Created 19 June 2020.

Plugin to generate dimensions based on given configuration for any android project

Using the plugins DSL:

plugins {
  id("com.jeelvankhede.pixelperfect") version "0.0.1-SNAPSHOT"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.jeelvankhede.pixelperfect:PixelPerfect:0.0.1-SNAPSHOT")
  }
}

apply(plugin = "com.jeelvankhede.pixelperfect")

Using the plugins DSL:

plugins {
  id "com.jeelvankhede.pixelperfect" version "0.0.1-SNAPSHOT"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.jeelvankhede.pixelperfect:PixelPerfect:0.0.1-SNAPSHOT"
  }
}

apply plugin: "com.jeelvankhede.pixelperfect"

Learn how to apply plugins to subprojects