Skip to content

Commit

Permalink
Update to handle properties with double quotes.
Browse files Browse the repository at this point in the history
  • Loading branch information
pfmaggi committed Dec 9, 2019
1 parent fdc9915 commit 2924de4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,12 @@ android {
val designer_news_client_secret: String by project
val product_hunt_developer_token: String by project

buildConfigField("String", "DESIGNER_NEWS_CLIENT_ID", "\"${designer_news_client_id}\"")
buildConfigField("String", "DESIGNER_NEWS_CLIENT_ID", "$designer_news_client_id")
buildConfigField("String",
"DESIGNER_NEWS_CLIENT_SECRET", "\"${designer_news_client_secret}\"")
"DESIGNER_NEWS_CLIENT_SECRET", "$designer_news_client_secret")

buildConfigField("String",
"PRODUCT_HUNT_DEVELOPER_TOKEN", "\"${product_hunt_developer_token}\"")
"PRODUCT_HUNT_DEVELOPER_TOKEN", "$product_hunt_developer_token")

javaCompileOptions {
annotationProcessorOptions {
Expand Down

0 comments on commit 2924de4

Please sign in to comment.