Skip to content

Commit

Permalink
Merge branch 'master' into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
diogobernardino committed Dec 17, 2019
2 parents 8f5ab2b + c692798 commit 39e6e5e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions mobile/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ File localPropertiesFiles = project.rootProject.file('local.properties')

if (localPropertiesFiles.exists())
properties.load(localPropertiesFiles.newDataInputStream())

println "and this"
android {

compileSdkVersion 29
Expand Down Expand Up @@ -61,7 +61,7 @@ dependencies {
}

play {
serviceAccountEmail = properties.hasProperty("play.accountEmail") ? properties.getProperty("play.accountEmail") : "dummyPlayAccountEmail"
serviceAccountCredentials = file(properties.hasProperty("play.p12") ? properties.getProperty("play.p12") : "dummyPlayP12")
serviceAccountEmail = properties.containsKey("play.accountEmail") ? properties.getProperty("play.accountEmail") : "dummyPlayAccountEmail"
serviceAccountCredentials = file(properties.containsKey("play.p12") ? properties.getProperty("play.p12") : "dummyPlayP12")
track = 'alpha'
}

0 comments on commit 39e6e5e

Please sign in to comment.