Skip to content

Commit

Permalink
[CHORE/#28] GooglePlayDependencies version 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
chattymin committed Jan 8, 2024
1 parent 81192ab commit 3afef29
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions buildSrc/src/main/kotlin/Dependencies.kt
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,6 @@ object KakaoDependencies {
}

object GooglePlayDependencies {
const val core = "com.google.android.play:core:${Versions.googlePlayCore}"
const val update = "com.google.android.play:app-update-ktx:+"
const val update = "com.google.android.play:app-update:${Versions.googlePlayUpdate}"
const val updateKtx = "com.google.android.play:app-update-ktx:${Versions.googlePlayUpdate}"
}
2 changes: 1 addition & 1 deletion buildSrc/src/main/kotlin/Versions.kt
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ object Versions {
const val junitVersion = "4.13.2"
const val espressoVersion = "3.3.0"
const val androidTestVersion = "1.1.2"
const val googlePlayCore = "2.1.0"
const val googlePlayUpdate = "2.1.0"

val javaVersion = JavaVersion.VERSION_17
const val jvmVersion = "17"
Expand Down
2 changes: 1 addition & 1 deletion presentation/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ dependencies {
}

GooglePlayDependencies.run {
implementation(core)
implementation(update)
implementation(updateKtx)
}
}

0 comments on commit 3afef29

Please sign in to comment.