File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -32,7 +32,6 @@ android {
3232 getByName(" debug" ) {
3333 isDebuggable = true
3434 applicationIdSuffix = " .dev"
35- buildConfigField(" String" , " GOOGLE_WEB_CLIENT_ID" , getLocalProperty(" DEBUG_GOOGLE_WEB_CLIENT_ID" ))
3635 manifestPlaceholders + = mapOf (
3736 " appName" to " @string/app_name_dev" ,
3837 )
@@ -43,7 +42,6 @@ android {
4342 isMinifyEnabled = true
4443 isShrinkResources = true
4544 signingConfig = signingConfigs.getByName(" release" )
46- buildConfigField(" String" , " GOOGLE_WEB_CLIENT_ID" , getLocalProperty(" RELEASE_GOOGLE_WEB_CLIENT_ID" ))
4745 manifestPlaceholders + = mapOf (
4846 " appName" to " @string/app_name" ,
4947 )
@@ -55,6 +53,7 @@ android {
5553 }
5654
5755 defaultConfig {
56+ buildConfigField(" String" , " GOOGLE_WEB_CLIENT_ID" , getLocalProperty(" GOOGLE_WEB_CLIENT_ID" ))
5857 buildConfigField(" String" , " KAKAO_NATIVE_APP_KEY" , getLocalProperty(" KAKAO_NATIVE_APP_KEY" ))
5958 manifestPlaceholders[" KAKAO_NATIVE_APP_KEY" ] = getLocalProperty(" KAKAO_NATIVE_APP_KEY" ).trim(' "' )
6059 }
Original file line number Diff line number Diff line change @@ -11,14 +11,8 @@ plugins {
1111android {
1212 namespace = " com.ninecraft.booket.feature.login"
1313
14- buildTypes {
15- getByName(" debug" ) {
16- buildConfigField(" String" , " GOOGLE_WEB_CLIENT_ID" , getLocalProperty(" DEBUG_GOOGLE_WEB_CLIENT_ID" ))
17- }
18-
19- getByName(" release" ) {
20- buildConfigField(" String" , " GOOGLE_WEB_CLIENT_ID" , getLocalProperty(" RELEASE_GOOGLE_WEB_CLIENT_ID" ))
21- }
14+ defaultConfig {
15+ buildConfigField(" String" , " GOOGLE_WEB_CLIENT_ID" , getLocalProperty(" GOOGLE_WEB_CLIENT_ID" ))
2216 }
2317
2418 buildFeatures {
You can’t perform that action at this time.
0 commit comments