aboutsummaryrefslogtreecommitdiff
path: root/build.gradle
diff options
context:
space:
mode:
authorMenny Even Danan <menny@evendanan.net>2016-03-28 20:33:41 +0000
committerMenny Even Danan <menny@evendanan.net>2016-03-28 20:33:41 +0000
commit564d3ad146b88668837ce3f631f52acd3a286b85 (patch)
tree1c34116f84e4de487712ba302a6f450c3b6bda2a /build.gradle
parent5c5aaaabff746533269bc9105940b8d0f23ff373 (diff)
downloadAnySoftKeyboard-564d3ad146b88668837ce3f631f52acd3a286b85.tar.gz
AnySoftKeyboard-564d3ad146b88668837ce3f631f52acd3a286b85.tar.bz2
more specific secure arguments and removing flag for publish
Diffstat (limited to 'build.gradle')
-rw-r--r--build.gradle16
1 files changed, 6 insertions, 10 deletions
diff --git a/build.gradle b/build.gradle
index b04e48c75..079f2834d 100644
--- a/build.gradle
+++ b/build.gradle
@@ -29,9 +29,7 @@ buildscript {
apply plugin: "net.ltgt.errorprone"
apply plugin: 'com.android.application'
apply plugin: 'io.fabric'
-if (project.hasProperty("enableApkUpload")) {
- apply plugin: 'com.github.triplet.play'
-}
+apply plugin: 'com.github.triplet.play'
repositories {
maven { url 'https://maven.fabric.io/public' }
@@ -164,13 +162,11 @@ configurations.errorprone {
resolutionStrategy.force 'com.google.errorprone:error_prone_core:2.0.8'
}
-if (project.hasProperty("enableApkUpload")) {
- play {
- track = 'beta'
- serviceAccountEmail = System.getenv("PUBLISH_APK_SERVICE_ACCOUNT_EMAIL")
- pk12File = file('/tmp/apk_upload_key.p12')
- uploadImages = false
- }
+play {
+ track = 'beta'
+ serviceAccountEmail = System.getenv("PUBLISH_APK_SERVICE_ACCOUNT_EMAIL")
+ pk12File = file('/tmp/apk_upload_key.p12')
+ uploadImages = false
}
dependencies {