Skip to content

Commit

Permalink
chore-146: Material Calendar View 의존성 추가 및 android.enableJetifier=tru…
Browse files Browse the repository at this point in the history
…e 추가로 의존성 충돌 해결
  • Loading branch information
YeonjunNotPed committed Mar 13, 2023
1 parent 5b14159 commit 6a20a75
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 1 deletion.
1 change: 1 addition & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ allprojects {
google()
mavenCentral()
maven(url = "https://devrepo.kakao.com/nexus/content/groups/public/")
maven(url = "https://jitpack.io")
}
}

Expand Down
2 changes: 2 additions & 0 deletions buildSrc/src/main/java/Dependencies.kt
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,8 @@ object Google {
}

object Libraries {
const val CALENDAR_VIEW = "com.github.prolificinteractive:material-calendarview:${Versions.CALENDAR_VIEW}"

const val RETROFIT = "com.squareup.retrofit2:retrofit:${Versions.RETROFIT}"
const val RETROFIT_CONVERTER_GSON = "com.squareup.retrofit2:converter-gson:${Versions.RETROFIT}"
const val OKHTTP = "com.squareup.okhttp3:okhttp:${Versions.OKHTTP}"
Expand Down
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 FLEX_BOX = "3.0.0"

/* [ Libraries ] */
const val CALENDAR_VIEW = "2.0.1"

const val RETROFIT = "2.9.0"
const val OKHTTP = "4.10.0"
const val TIMBER = "5.0.1"
Expand Down
3 changes: 2 additions & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,5 @@ kotlin.code.style=official
# Enables namespacing of each library's R class so that its R class includes only the
# resources declared in the library itself and none from the library's dependencies,
# thereby reducing the size of the R class for that library
android.nonTransitiveRClass=true
android.nonTransitiveRClass=true
android.enableJetifier=true
1 change: 1 addition & 0 deletions presentation/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ dependencies {
implementation(AndroidX.PAGING3_RUNTIME)
implementation(AndroidX.PAGING3_COMMON_KTX)

implementation(Libraries.CALENDAR_VIEW)
implementation(Libraries.COIL)
implementation(Libraries.TIMBER)
implementation(Libraries.LOTTIE)
Expand Down

0 comments on commit 6a20a75

Please sign in to comment.