Skip to content

Commit

Permalink
fix integer cast
Browse files Browse the repository at this point in the history
  • Loading branch information
arthurcugnierecs committed Sep 24, 2024
1 parent 9900b5c commit 6d9b3bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CSSampleApp/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ android {
uploadCredentials {
// from gradle.properties
projectId = project.findProperty("PROD_SAMPLE_PROJECT_ID")?.toInteger() ?:
System.getenv("PROD_SAMPLE_PROJECT_ID")
System.getenv("PROD_SAMPLE_PROJECT_ID")?.toInteger()
// from local.properties
clientId = localProperties.getProperty("PROD_MAPPING_UPLOAD_CLIENT_ID", "") ?:
System.getenv("PROD_MAPPING_UPLOAD_CLIENT_ID")
Expand Down

0 comments on commit 6d9b3bb

Please sign in to comment.