Skip to content

Commit

Permalink
Updating libs (#31)
Browse files Browse the repository at this point in the history
## Context
Updating library versions
  • Loading branch information
cmorigaki authored Mar 5, 2021
1 parent ca7f7a3 commit 6b7378b
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 12 deletions.
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -75,5 +75,5 @@ dependencies {
testImplementation TestConfig.mockk

// debugImplementation because LeakCanary should only run in debug builds.
debugImplementation 'com.squareup.leakcanary:leakcanary-android:2.5'
debugImplementation AndroidLibConfig.leakCanary
}
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ buildscript {
jcenter()
}
ext {
kotlinVersion = "1.4.30"
kotlinVersion = "1.4.31"
gradleVersion = '4.1.2'
}

Expand Down
23 changes: 13 additions & 10 deletions project-config/dependencies.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,9 @@ ext {
coreKtx: "androidx.core:core-ktx:1.3.2",
coroutinesCore: "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.4.2",

// Debug
leakCanary: "com.squareup.leakcanary:leakcanary-android:2.6",

// Network related libraries
retrofit: "com.squareup.retrofit2:retrofit:2.9.0",
okhttp: "com.squareup.okhttp3:okhttp:3.14.9",
Expand All @@ -36,14 +39,14 @@ ext {
constraintLayout: "androidx.constraintlayout:constraintlayout:2.0.4",
recyclerView: "androidx.recyclerview:recyclerview:1.1.0",
cardView: "androidx.cardview:cardview:1.0.0",
viewmodel: "androidx.lifecycle:lifecycle-viewmodel-ktx:2.2.0",
fragment: "androidx.fragment:fragment-ktx:1.2.5",
viewmodel: "androidx.lifecycle:lifecycle-viewmodel-ktx:2.3.0",
fragment: "androidx.fragment:fragment-ktx:1.3.0",
swipeRefresh: "androidx.swiperefreshlayout:swiperefreshlayout:1.1.0",
coordinatorLayout: "androidx.coordinatorlayout:coordinatorlayout:1.1.0",
material: "com.google.android.material:material:1.2.1",
material: "com.google.android.material:material:1.3.0",

// Android utilities
playCore: "com.google.android.play:core:1.9.1", // For in-App update
playCore: "com.google.android.play:core:1.10.0", // For in-App update
playCoreExtensions: "com.google.android.play:core-ktx:1.8.1",

// DI
Expand All @@ -53,13 +56,13 @@ ext {
koinFragment: "org.koin:koin-androidx-fragment:2.2.2", // or Koin for Android Fragment Factory (unstable version)

// Image download library
fresco: "com.facebook.fresco:fresco:2.3.0",
fresco: "com.facebook.fresco:fresco:2.4.0",

// Crash reporting library
sentry: "io.sentry:sentry-android:3.2.0",
sentry: "io.sentry:sentry-android:4.2.0",

// Analytics
amplitude: "com.amplitude:android-sdk:2.30.0",
amplitude: "com.amplitude:android-sdk:2.30.1",

// Logging
timber: 'com.jakewharton.timber:timber:4.7.1'
Expand Down Expand Up @@ -89,9 +92,9 @@ ext {
]

TestConfig = [
jUnit: "junit:junit:4.13.1",
mockk: "io.mockk:mockk:1.10.2",
coroutinesTest: "org.jetbrains.kotlinx:kotlinx-coroutines-test:1.3.9"
jUnit: "junit:junit:4.13.2",
mockk: "io.mockk:mockk:1.10.6",
coroutinesTest: "org.jetbrains.kotlinx:kotlinx-coroutines-test:1.4.2"
]

}

0 comments on commit 6b7378b

Please sign in to comment.