Skip to content

Commit

Permalink
#17 [ADD] Google 라이브러리 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
youjin09222 committed Jan 11, 2025
1 parent c163649 commit d6fcf78
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 0 deletions.
4 changes: 4 additions & 0 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -131,4 +131,8 @@ dependencies {
// Kakao
implementation(libs.kakao.all)
implementation(libs.kakao.user)

// Google
implementation(libs.play.services.auth)
implementation(libs.google.id)
}
8 changes: 8 additions & 0 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,10 @@ landscapist = "2.3.6"
# Kakao
kakao = "2.20.1"

# Google
google-id = "1.1.1"
play-services-auth = "21.1.0"

viewpager-indicator = "5.0"

# Hilt
Expand Down Expand Up @@ -155,6 +159,10 @@ landscapist-animation = { group = "com.github.skydoves", name = "landscapist-ani
kakao-all = { group = "com.kakao.sdk", name = "v2-all", version.ref = "kakao" } # Kakao SDK 라이브러리
kakao-user = { group = "com.kakao.sdk", name = "v2-user", version.ref = "kakao" } # Kakao 로그인 라이브러리

# Google
play-services-auth = { group = "com.google.android.gms", name = "play-services-auth", version.ref = "play-services-auth" }
google-id = { group = "com.google.android.libraries.identity.googleid", name = "googleid", version.ref = "google-id" }

# Hilt
hilt-android = { group = "com.google.dagger", name = "hilt-android", version.ref = "hilt" } # Hilt Android 라이브러리
hilt-core = { group = "com.google.dagger", name = "hilt-core", version.ref = "hilt" } # Hilt Core 라이브러리
Expand Down
4 changes: 4 additions & 0 deletions presentation/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -111,4 +111,8 @@ dependencies {
// Kakao
implementation(libs.kakao.all)
implementation(libs.kakao.user)

// Google
implementation(libs.play.services.auth)
implementation(libs.google.id)
}

0 comments on commit d6fcf78

Please sign in to comment.