Search Gradle plugins

sh.nothing.locate-apk

Reveal the location of APK file on every assemble and add tasks to open it on Finder.app

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

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

Version 0.1.0 (latest)

Created 09 February 2018.

Reveal the location of APK file on every assemble and add tasks to open it on Finder.app

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects