搜索 Gradle 插件

sh.nothing.locate-apk

所有者: 藤崎优希

在每次组装时显示 APK 文件的位置,并添加任务以在 Finder.app 中打开它

https://github.com/tnj/gradle-locate-apk-plugin

源码: https://github.com/tnj/gradle-locate-apk-plugin

版本 0.1.0(最新版)

0.1.0

创建于 2018 年 2 月 9 日。

在每次组装时显示 APK 文件的位置,并添加任务以在 Finder.app 中打开它

使用 插件 DSL

plugins {
  id("sh.nothing.locate-apk") version "0.1.0"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.sh.nothing:gradle-locate-apk-plugin:0.1.0")
  }
}

apply(plugin = "sh.nothing.locate-apk")

使用 插件 DSL

plugins {
  id "sh.nothing.locate-apk" version "0.1.0"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.sh.nothing:gradle-locate-apk-plugin:0.1.0"
  }
}

apply plugin: "sh.nothing.locate-apk"

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