/hockey-gradle-plugin

Plugin for uploading artifacts to https://hockeyapp.net/

Primary LanguageKotlin

hockey-gradle-plugin

Plugin for uploading artifacts to https://hockeyapp.net/
Link to plugin homepage on gradle plugins

Basic usage

  1. Add this to the project level build.gradle
buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.pvasiliev:hockey-gradle-plugin:1.0"
  }
}
  1. In the app level build.gradle file add hockey block. You should provide application variant name and token from hockeyapp for this app and also relative path from build directory to apk file for this variant
apply plugin: "com.pvasiliev.hockey"
hockey {
    debug{
      apiToken = "2564e2a10ab24f319432b2fdb82fa71a"
      path = "outputs\\apk\\app-debug.apk"
    }
}
  1. In other gradle task group you will find new tasks image

TODO

  1. Add more customization
  2. Upload jar to maven central or bintray
  3. Write tests