Skip to content

Commit

Permalink
Fix gradle issue while checking if publishing properties existed.
Browse files Browse the repository at this point in the history
  • Loading branch information
diogobernardino committed Dec 17, 2019
1 parent f2ca193 commit c692798
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 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'
}
2 changes: 1 addition & 1 deletion williamchart/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ android {
minSdkVersion 16
targetSdkVersion 29
versionCode 1
versionName "3.1.1"
versionName "3.2.0"

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"

Expand Down

0 comments on commit c692798

Please sign in to comment.