Plugin for uploading artifacts to https://hockeyapp.net/
Link to plugin homepage on gradle plugins
- 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"
}
}
- 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"
}
}
- Add more customization
- Upload jar to maven central or bintray
- Write tests