diff options
Diffstat (limited to 'app')
-rw-r--r-- | app/build.gradle | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/build.gradle b/app/build.gradle index 921517e2..cb3c9f04 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -10,7 +10,7 @@ apply plugin: 'com.github.triplet.play' play { jsonFile = file('../files/gplay-keys.json') - track = 'beta' + track = 'alpha' uploadImages = false untrackOld = true } @@ -19,7 +19,7 @@ android { compileSdkVersion Integer.parseInt(project.TARGET_SDK) buildToolsVersion project.BUILD_TOOLS - def offset = System.getenv("TRAVIS_BUILD_NUMBER") ?: 0 + def offset = Integer.parseInt(System.getenv("TRAVIS_BUILD_NUMBER") ?: "0") androidGitVersion { baseCode offset |