Skip to content

Commit

Permalink
feat: update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Mopsalarm committed Apr 12, 2024
1 parent 23d7f09 commit d186323
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 19 deletions.
16 changes: 8 additions & 8 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ android {
namespace 'com.pr0gramm.app'
}

android.applicationVariants.all { variant ->
android.applicationVariants.configureEach { variant ->
// delete .so-files we don't want in the finished build
tasks."merge${variant.name.capitalize()}JniLibFolders".doLast {
def filesToDelete = fileTree("build/") {
Expand Down Expand Up @@ -160,7 +160,7 @@ dependencies {

implementation project(":model")

implementation "org.jetbrains.kotlin:kotlin-stdlib:1.9.22"
implementation "org.jetbrains.kotlin:kotlin-stdlib:1.9.23"
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0"
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:1.8.0"

Expand Down Expand Up @@ -189,12 +189,12 @@ dependencies {

implementation 'androidx.fragment:fragment-ktx:1.6.2'

implementation "com.google.android.gms:play-services-ads:22.6.0"
implementation 'com.google.firebase:firebase-analytics:21.5.1'
implementation 'com.google.firebase:firebase-crashlytics:18.6.2'
implementation "com.google.android.gms:play-services-ads:23.0.0"
implementation 'com.google.firebase:firebase-analytics:21.6.2'
implementation 'com.google.firebase:firebase-crashlytics:18.6.4'

implementation "com.squareup.retrofit2:retrofit:2.9.0"
implementation("com.squareup.retrofit2:converter-moshi:2.9.0")
implementation "com.squareup.retrofit2:retrofit:2.11.0"
implementation("com.squareup.retrofit2:converter-moshi:2.11.0")

implementation(platform("com.squareup.okhttp3:okhttp-bom:4.12.0"))
implementation "com.squareup.okhttp3:okhttp"
Expand Down Expand Up @@ -222,7 +222,7 @@ dependencies {
// migration to 6+ takes some effort
implementation 'com.github.paolorotolo:appintro:5.1.0'

implementation 'androidx.media3:media3-exoplayer:1.2.1'
implementation 'androidx.media3:media3-exoplayer:1.3.1'

debugImplementation 'androidx.multidex:multidex:2.0.1'
}
Expand Down
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@ buildscript {
}

dependencies {
classpath 'com.android.tools.build:gradle:8.3.1'
classpath 'com.android.tools.build:gradle:8.3.2'
}
}

plugins {
id "org.jetbrains.kotlin.android" version "1.9.22" apply false
id "org.jetbrains.kotlin.kapt" version "1.9.22" apply false
id "org.jetbrains.kotlin.android" version "1.9.23" apply false
id "org.jetbrains.kotlin.kapt" version "1.9.23" apply false
id "com.github.ben-manes.versions" version "0.51.0"
}

Expand Down
1 change: 0 additions & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,5 @@ kotlin.compiler.execution.strategy=in-process
android.useAndroidX=true
android.enableJetifier=false
android.enableR8.fullMode=true
android.defaults.buildfeatures.buildconfig=true
android.nonTransitiveRClass=false
android.nonFinalResIds=false
14 changes: 7 additions & 7 deletions model/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ buildscript {
plugins {
id("com.android.library")
id("kotlin-android")
id("app.cash.sqldelight") version "2.0.1"
id("com.google.devtools.ksp") version "1.9.22-1.0.18"
id("app.cash.sqldelight") version "2.0.2"
id("com.google.devtools.ksp") version "1.9.23-1.0.20"
}

android {
Expand Down Expand Up @@ -57,17 +57,17 @@ repositories {
}

dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib:1.9.22"
implementation "org.jetbrains.kotlin:kotlin-stdlib:1.9.23"
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0"
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:1.8.0"

implementation "com.squareup.moshi:moshi:1.15.1"
implementation "com.squareup.retrofit2:retrofit:2.9.0"
implementation "com.squareup.retrofit2:retrofit:2.11.0"
implementation "com.squareup.okhttp3:okhttp:4.12.0"

api "app.cash.sqldelight:primitive-adapters:2.0.1"
api "app.cash.sqldelight:android-driver:2.0.1"
api "app.cash.sqldelight:coroutines-extensions-jvm:2.0.1"
api "app.cash.sqldelight:primitive-adapters:2.0.2"
api "app.cash.sqldelight:android-driver:2.0.2"
api "app.cash.sqldelight:coroutines-extensions-jvm:2.0.2"

ksp "com.squareup.moshi:moshi-kotlin-codegen:1.15.1"
}

0 comments on commit d186323

Please sign in to comment.