Skip to content

Commit

Permalink
feat : billing dependency 추가 (#89)
Browse files Browse the repository at this point in the history
  • Loading branch information
hjiee committed Jan 30, 2021
1 parent 06e80bb commit 6af1b5d
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 16 deletions.
1 change: 1 addition & 0 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,7 @@ dependencies {
implementation(Libs.LIFECYCLE_LIVE_DATA_KTX)
implementation(Libs.NAVIGATION_FRAGMENT)
implementation(Libs.NAVIGATION_UI_KTX)
implementation(Libs.BILLING)

// Libraries
implementation(Libs.RETROFIT)
Expand Down
26 changes: 10 additions & 16 deletions buildSrc/src/main/kotlin/Dependencies.kt
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ object Versions {
const val COORDINATOR_LAYOUT = "1.1.0"
const val RECYCLER_VIEW = "1.1.0"
const val MATERIAL = "1.2.0"
const val BILLING = "3.0.0"

const val CORE_KTX = "1.3.0"
const val ACTIVITY_KTX = "1.1.0"
Expand Down Expand Up @@ -42,30 +43,23 @@ object Versions {
object Libs {
// Kotlin
const val KOTLIN = "org.jetbrains.kotlin:kotlin-stdlib:${Versions.KOTLIN}"
const val COROUTINES_CORE =
"org.jetbrains.kotlinx:kotlinx-coroutines-core:${Versions.COROUTINES}"
const val COROUTINES_ANDROID =
"org.jetbrains.kotlinx:kotlinx-coroutines-android:${Versions.COROUTINES}"
const val COROUTINES_CORE = "org.jetbrains.kotlinx:kotlinx-coroutines-core:${Versions.COROUTINES}"
const val COROUTINES_ANDROID = "org.jetbrains.kotlinx:kotlinx-coroutines-android:${Versions.COROUTINES}"

// Android Framework
const val CONSTRAINT_LAYOUT =
"androidx.constraintlayout:constraintlayout:${Versions.CONSTRAINT_LAYOUT}"
const val CONSTRAINT_LAYOUT = "androidx.constraintlayout:constraintlayout:${Versions.CONSTRAINT_LAYOUT}"
const val APP_COMPAT = "androidx.appcompat:appcompat:${Versions.APP_COMPAT}"
const val RECYCLER_VIEW = "androidx.recyclerview:recyclerview:${Versions.RECYCLER_VIEW}"
const val COORDINATOR_LAYOUT =
"androidx.coordinatorlayout:coordinatorlayout:${Versions.COORDINATOR_LAYOUT}"
const val COORDINATOR_LAYOUT = "androidx.coordinatorlayout:coordinatorlayout:${Versions.COORDINATOR_LAYOUT}"
const val MATERIAL = "com.google.android.material:material:${Versions.MATERIAL}"
const val CORE_KTX = "androidx.core:core-ktx:${Versions.CORE_KTX}"
const val ACTIVITY_KTX = "androidx.activity:activity-ktx:${Versions.ACTIVITY_KTX}"
const val FRAGMENT_KTX = "androidx.fragment:fragment-ktx:${Versions.FRAGMENT_KTX}"
const val LIFECYCLE_VIEW_MODEL_KTX =
"androidx.lifecycle:lifecycle-viewmodel-ktx:${Versions.LIFECYCLE}"
const val LIFECYCLE_LIVE_DATA_KTX =
"androidx.lifecycle:lifecycle-livedata-ktx:${Versions.LIFECYCLE}"
const val NAVIGATION_FRAGMENT =
"androidx.navigation:navigation-fragment-ktx:${Versions.NAVIGATION_FRAGMENT}"
const val NAVIGATION_UI_KTX =
"androidx.navigation:navigation-ui-ktx:${Versions.NAVIGATION_UI_KTX}"
const val LIFECYCLE_VIEW_MODEL_KTX = "androidx.lifecycle:lifecycle-viewmodel-ktx:${Versions.LIFECYCLE}"
const val LIFECYCLE_LIVE_DATA_KTX = "androidx.lifecycle:lifecycle-livedata-ktx:${Versions.LIFECYCLE}"
const val NAVIGATION_FRAGMENT = "androidx.navigation:navigation-fragment-ktx:${Versions.NAVIGATION_FRAGMENT}"
const val NAVIGATION_UI_KTX = "androidx.navigation:navigation-ui-ktx:${Versions.NAVIGATION_UI_KTX}"
const val BILLING = "com.android.billingclient:billing-ktx:${Versions.BILLING}"

// Third Party Libraries
const val RETROFIT = "com.squareup.retrofit2:retrofit:${Versions.RETROFIT}"
Expand Down

0 comments on commit 6af1b5d

Please sign in to comment.