Skip to content

Instantly share code, notes, and snippets.

@shikajiro
Created December 9, 2014 08:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shikajiro/bc0eea56f501a963b711 to your computer and use it in GitHub Desktop.
Save shikajiro/bc0eea56f501a963b711 to your computer and use it in GitHub Desktop.
Deploygateにgradleからアップロードする際に、メッセージをコンソールから指定する ref: http://qiita.com/shikajiro/items/7a4f26cb4c5fff8b2a93
deploygate {
userName = "shikajiro"
token = "hogehoge"
apks {
release {
sourceFile = file("build/outputs/apk/app-release.apk")
message = deploygateMsg
}
debug {
sourceFile = file("build/outputs/apk/app-debug.apk")
message = deploygateMsg
}
}
}
./gradlew uploadDeployGate -PdeploygateMsg="ここにメッセージ"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment