A Gradle plugin for uploading iOS and Android Apps to HockeyApp.
Add to your build.gradle
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'de.felixschulze.gradle:gradle-hockeyapp-plugin:1.1+'
}
}
apply plugin: 'hockeyApp'
Add to your build.gradle
hockeyapp {
apiToken = "YOURHOCKEYAPPTOKEN"
releaseType = 2 // alpha
notify = 0
status = 2
notesType = 1
notes = "Some notes."
symbolsDirectory = file("build/symbols/")
mappingFileNameRegex = "R.txt"
variantToApplicationId = [
BuildVariantA: "applicationIdA",
BuildVariantB: "applicationIdB",
]
}
appFileNameRegex
: Only needed for iOSoutputDirectory
: Only needed for iOSapiToken
: Your API Token from HockeyAppreleaseType
:0
beta,1
live,2
alphanotify
:0
not notify testers,1
notify all testers that can install this appstatus
:1
not allow users to download the version,2
make the version available for downloadnotesType
:0
Textile,1
Markdownnotes
: optional, release notes as Textile or MarkdownsymbolsDirectory
:file("directory")
mappingFileNameRegex
:mappingFileNameRegex= "R.txt"
variantToApplicationId
: Optional:[variantName: "appId"]
map between your variant and application ID
gradle-hockeyapp-plugin is available under the MIT license. See the LICENSE file for more info.