Skip to content

Commit

Permalink
#35 [add] Add naver maps dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Jokwanhee committed Jan 29, 2023
1 parent 9424914 commit fa34927
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 0 deletions.
3 changes: 3 additions & 0 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,9 @@ dependencies {
implementation(FirebaseDependencies.firebaseAnalytics)
implementation(FirebaseDependencies.firebaseAuth)
}
NaverDependencies.run {
implementation(naverMaps)
}
}

ktlint {
Expand Down
1 change: 1 addition & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ buildscript {
repositories {
google()
mavenCentral()
maven("https://naver.jfrog.io/artifactory/maven/")
}
dependencies {
classpath("com.android.tools.build:gradle:${Versions.gradleVersion}")
Expand Down
4 changes: 4 additions & 0 deletions buildSrc/src/main/java/Dependencies.kt
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,10 @@ object FirebaseDependencies {
const val firebaseAuth = "com.google.firebase:firebase-auth-ktx"
}

object NaverDependencies{
const val naverMaps = "com.naver.maps:map-sdk:${Versions.naverMapsVersion}"
}

object ClassPathPlugins {
const val hilt = "com.google.dagger:hilt-android-gradle-plugin:${Versions.hiltVersion}"
}
2 changes: 2 additions & 0 deletions buildSrc/src/main/java/Versions.kt
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@ object Versions {

const val firebaseBomVersion = "30.2.0"

const val naverMapsVersion = "3.16.1"

const val roomVersion = "2.4.1"

const val datastoreVersion = "1.0.0"
Expand Down

0 comments on commit fa34927

Please sign in to comment.