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

chore: Update android gradle plugin, preference, lifecycle process, gson, material and firebase dependencies #658

Merged
merged 1 commit into from
Feb 9, 2024
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 @@ -139,7 +139,7 @@ dependencies {
fullImplementation libs.google.play.core

// Dependency Injection
implementation libs.google.dagger
implementation libs.google.dagger.lib
kapt libs.google.dagger.compiler

// Logger
Expand Down
17 changes: 8 additions & 9 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[versions]
androidGradlePlugin = "8.1.2"
androidGradlePlugin = "8.2.2"
barista = "3.9.0"
countlySdk = "23.6.0"
faker = "1.2.8"
Expand All @@ -18,19 +18,19 @@ androidxCore = "1.5.0"
androidxRunner = "1.5.2"
androidxAppCompat = "1.6.1"
androidxConstraintlayout = "2.1.4"
androidxLifecycleProcess = "2.5.1"
androidxPreference = "1.2.0"
androidxLifecycleProcess = "2.7.0"
androidxPreference = "1.2.1"
androidxLocalbroadcastmanager = "1.1.0"
androidxLegacySupportV4 = "1.0.0"
androidxJunit = "1.1.5"
androidxEspressoCore = "3.5.1"

# Google
googleGson = "2.8.9"
googleGson = "2.10"
googleGuava = "30.1.1-android"
googleMaterial = "1.6.1"
googleMaterial = "1.11.0"
googleDagger = "2.45"
googleFirebaseBon = "26.3.0"
googleFirebaseBon = "32.7.1"
googlePlaycore = "1.10.3"

# OONI
Expand All @@ -46,11 +46,10 @@ junit = "4.13.2"
dbflow = "4.2.4"
retrofitCore = "2.9.0"
retrofitLoggingInterceptor = "4.9.1"
butterknifeCore = "10.2.3"

# Firebase Services
# https://firebase.google.com/support/release-notes/android
gms-googleServices = "4.3.15"
gms-googleServices = "4.4.0"

[libraries]
# Dependencies of the included build-logic
Expand Down Expand Up @@ -97,7 +96,7 @@ google-gson = { module = "com.google.code.gson:gson", version.ref = "googleGson"
google-guava = { module = "com.google.guava:guava", version.ref = "googleGuava" }
google-material = { module = "com.google.android.material:material", version.ref = "googleMaterial" }
google-dagger-compiler = { module = "com.google.dagger:dagger-compiler", version.ref = "googleDagger" }
google-dagger = { module = "com.google.dagger:dagger", version.ref = "googleDagger" }
google-dagger-lib = { module = "com.google.dagger:dagger", version.ref = "googleDagger" }
google-firebase-messaging = { module = "com.google.firebase:firebase-messaging"}
google-firebase-bom = { module = "com.google.firebase:firebase-bom", version.ref = "googleFirebaseBon" }

Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.0-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.2-all.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
2 changes: 1 addition & 1 deletion shared-test/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ dependencies {
implementation project(":app")

// Dependency Injection (https://dagger.dev/)
implementation libs.google.dagger
implementation libs.google.dagger.lib
kapt libs.google.dagger.compiler

// Database Library (https://github.com/agrosner/DBFlow)
Expand Down
Loading