Skip to content

Commit

Permalink
[#1011] SERVER_CLIENT_ID 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
l2hyunwoo committed Jan 3, 2025
1 parent 0480611 commit f2d4286
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ internal fun Project.configureAndroidCommonPlugin() {
val userStatusKeyAlias = properties["userStatusKeyAlias"] as? String ?: ""
val pushTokenKeyAlias = properties["pushTokenKeyAlias"] as? String ?: ""
val mockAuthApi = properties["mockAuthApi"] as? String ?: ""
val serverClientId = properties["serverClientId"] as? String ?: ""
buildConfigField("String", "SOPTAMP_API_KEY", apiKey)
buildConfigField("String", "SOPTAMP_DATA_STORE_KEY", dataStoreKey)
buildConfigField("String", "POKE_DATA_STORE_KEY", pokeDataStoreKey)
Expand All @@ -53,6 +54,7 @@ internal fun Project.configureAndroidCommonPlugin() {
buildConfigField("String", "USER_STATUS_KEY_ALIAS", userStatusKeyAlias)
buildConfigField("String", "PUSH_TOKEN_KEY_ALIAS", pushTokenKeyAlias)
buildConfigField("String", "MOCK_AUTH_API", mockAuthApi)
buildConfigField("String", "SERVER_CLIENT_ID", serverClientId)
}
buildFeatures.apply {
viewBinding = true
Expand Down

0 comments on commit f2d4286

Please sign in to comment.