Skip to content

Commit

Permalink
Align import syntax of properties to the one used in Groovy
Browse files Browse the repository at this point in the history
  • Loading branch information
pfmaggi committed Dec 9, 2019
1 parent 15a2129 commit e7af377
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 @@ -37,12 +37,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 e7af377

Please sign in to comment.