Skip to content

Commit

Permalink
Update to AGP 3.6.0-rc1
Browse files Browse the repository at this point in the history
This commit also correct double quotes handling for properties.
  • Loading branch information
pfmaggi committed Dec 30, 2019
1 parent 2924de4 commit d49fd8c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion buildSrc/src/main/java/Config.kt
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ object Versions {
val compileSdk = 29
val targetSdk = 28
val minSdk = 23
val gradle_plugin = "3.6.0-beta05"
val gradle_plugin = "3.6.0-rc01"

val appcompat = "1.1.0"
val androidx = "1.0.0"
Expand Down
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
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-5.6.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-5.6.4-bin.zip

0 comments on commit d49fd8c

Please sign in to comment.