Skip to content

Commit

Permalink
fix: remove quotes on value for build config field
Browse files Browse the repository at this point in the history
  • Loading branch information
Gimbergsson committed Jan 7, 2025
1 parent 71504a4 commit 503fa41
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions androidos/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ android {
vectorDrawables.useSupportLibrary = true
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"

buildConfigField("String", "APPWRITE_PROJECT_ID", "${apikeyProperties["APPWRITE_PROJECT_ID"]}")
buildConfigField("String", "APPWRITE_API_KEY", "${apikeyProperties["APPWRITE_API_KEY"]}")
buildConfigField("String", "APPWRITE_PROJECT_ID", apikeyProperties["APPWRITE_PROJECT_ID"] as String)
buildConfigField("String", "APPWRITE_API_KEY", apikeyProperties["APPWRITE_API_KEY"] as String)
}

signingConfigs {
Expand Down

0 comments on commit 503fa41

Please sign in to comment.