Skip to content

Commit

Permalink
[#71] 구글 로그인 의존성 추가 및 클라이언트 id 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
youngseo3 committed May 2, 2024
1 parent 5c8ed46 commit 5167815
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions Android/app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,11 @@ android {

testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"

buildConfigField("String", "BASE_URL", properties.getProperty("base_url"))
buildConfigField("String", "S3ACCESSKEY", properties.getProperty("s3_access_key"))
buildConfigField("String", "S3SECRETKEY", properties.getProperty("s3_secret_key"))
buildConfigField("String", "S3BUCKET", properties.getProperty("s3_bucket"))
buildConfigField("String", "GOOGLE_LOGIN_CLIENT_ID", properties.getProperty("google_login_client_id"))
}

buildTypes {
Expand Down Expand Up @@ -98,4 +100,9 @@ dependencies {
implementation("com.amazonaws:aws-android-sdk-cognito:2.20.1")
implementation("com.amazonaws:aws-android-sdk-s3:2.75.0")

// Google Login
implementation("com.google.android.gms:play-services-auth:20.7.0")
implementation("com.google.gms:google-services:4.3.15")
implementation("com.google.firebase:firebase-auth:22.0.0")
implementation("com.google.firebase:firebase-bom:32.0.0")
}

0 comments on commit 5167815

Please sign in to comment.