[go: nahoru, domu]

Skip to content

A Gradle plugin for uploading iOS and Android Apps to HockeyApp.

License

Notifications You must be signed in to change notification settings

sveinungkb/gradle-hockeyapp-plugin

 
 

Repository files navigation

gradle-hockeyapp-plugin Build Status

A Gradle plugin for uploading iOS and Android Apps to HockeyApp.

Basic usage

Add to your build.gradle

buildscript {
    repositories {
        mavenCentral()
    }
    dependencies {
        classpath 'de.felixschulze.gradle:gradle-hockeyapp-plugin:1.1+'
    }
}

apply plugin: 'hockeyApp'

Advanced usage

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 iOS
  • outputDirectory: Only needed for iOS
  • apiToken: Your API Token from HockeyApp
  • releaseType: 0 beta, 1 live, 2 alpha
  • notify: 0 not notify testers, 1 notify all testers that can install this app
  • status: 1 not allow users to download the version, 2 make the version available for download
  • notesType: 0 Textile, 1 Markdown
  • notes: optional, release notes as Textile or Markdown
  • symbolsDirectory: file("directory")
  • mappingFileNameRegex: mappingFileNameRegex= "R.txt"
  • variantToApplicationId: Optional: [variantName: "appId"] map between your variant and application ID

Changelog

Releases

License

gradle-hockeyapp-plugin is available under the MIT license. See the LICENSE file for more info.

About

A Gradle plugin for uploading iOS and Android Apps to HockeyApp.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Groovy 66.0%
  • Shell 34.0%