Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updating libs 03/21 #31

Merged
merged 1 commit into from
Mar 5, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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"
]

}