搜索 Gradle 插件

版本 0.1 (最新)

0.1

创建于 2015 年 10 月 18 日。

Android 开发者视图检查的瑞士军刀。

使用 插件 DSL

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

使用 旧插件应用程序

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

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

使用 插件 DSL

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

使用 旧插件应用程序

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

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

了解如何将插件应用于子项目