Search Gradle plugins

Version 0.1.0-SNAPSHOT

Created 19 October 2015.

View Inspector Plugin for Android development.

Using the plugins DSL:

plugins {
  id("com.github.xfumihiro.view-inspector") version "0.1.0-SNAPSHOT"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.github.xfumihiro.view-inspector:view-inspector-plugin:0.1.0-SNAPSHOT")
  }
}

apply(plugin = "com.github.xfumihiro.view-inspector")

Using the plugins DSL:

plugins {
  id "com.github.xfumihiro.view-inspector" version "0.1.0-SNAPSHOT"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.github.xfumihiro.view-inspector:view-inspector-plugin:0.1.0-SNAPSHOT"
  }
}

apply plugin: "com.github.xfumihiro.view-inspector"

Learn how to apply plugins to subprojects