Skip to content

Commit

Permalink
refactor : google token 네이밍 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
youlalala committed Nov 16, 2023
1 parent 06db8c8 commit fa27329
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion android/feature/login/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ android {

defaultConfig {

buildConfigField("String", "GOOGLE_SERVER_ID", localProperties["google.server.id"] as String)
buildConfigField("String", "GOOGLE_CLIENT_ID", localProperties["google.client.id"] as String)
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
consumerProguardFiles("consumer-rules.pro")
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class LoginFragment : BaseFragment<FragmentLoginBinding>(R.layout.fragment_login
private val viewModel: LoginViewModel by viewModels()

private val gso = GoogleSignInOptions.Builder(GoogleSignInOptions.DEFAULT_SIGN_IN)
.requestIdToken(BuildConfig.GOOGLE_SERVER_ID)
.requestIdToken(BuildConfig.GOOGLE_CLIENT_ID)
.build()

private val googleLoginLauncher: ActivityResultLauncher<Intent> =
Expand Down

0 comments on commit fa27329

Please sign in to comment.