Skip to content

Commit

Permalink
fix(sample): fix buildConfigField
Browse files Browse the repository at this point in the history
SUITEDEV-35237

Co-authored-by: megamegax <[email protected]>
  • Loading branch information
davidSchuppa and megamegax committed Feb 22, 2024
1 parent b396440 commit 6a576cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sample/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ android {
buildConfigField(
"String",
"GOOGLE_OAUTH_SERVER_CLIENT_ID",
env.fetch("GOOGLE_OAUTH_SERVER_CLIENT_ID", System.getenv("GOOGLE_OAUTH_SERVER_CLIENT_ID") ?: "")
"\"${env.fetch("GOOGLE_OAUTH_SERVER_CLIENT_ID", System.getenv("GOOGLE_OAUTH_SERVER_CLIENT_ID") ?: "")}\""
)
}

Expand Down

0 comments on commit 6a576cb

Please sign in to comment.