Skip to content

Commit

Permalink
build: update dependencies
Browse files Browse the repository at this point in the history
There are 9 dependencies update, changelog of this commit are available
below here.

Android Gradle Plugin: 8.0.1 -> 8.0.2
Kotlin: 1.8.21 -> 1.8.22
Android Compose BOM: 2023.05.01 -> 2023.06.01
Room: 2.5.1 -> 2.5.2
ReVanced Patcher: 11.0.1 -> 11.0.4
APKsig: 8.2.0-alpha05 -> 8.2.0-alpha10
Koin (Android, workmanager): 3.4.0 -> 3.4.2
Koin (Androidx Compose): 3.4.4 -> 3.4.5
Ktor: 2.3.0 -> 2.3.1
  • Loading branch information
validcube committed Jul 7, 2023
1 parent 4ae9904 commit 400163b
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
14 changes: 7 additions & 7 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ plugins {
id("org.jetbrains.kotlin.android")
id("com.google.devtools.ksp")
id("kotlin-parcelize")
kotlin("plugin.serialization") version "1.8.21"
kotlin("plugin.serialization") version "1.8.22"
id("com.mikepenz.aboutlibraries.plugin") version "10.8.0"
}

Expand Down Expand Up @@ -70,7 +70,7 @@ dependencies {
implementation("androidx.work:work-runtime-ktx:2.8.1")

// Compose
implementation(platform("androidx.compose:compose-bom:2023.05.01"))
implementation(platform("androidx.compose:compose-bom:2023.06.01"))
implementation("androidx.compose.ui:ui")
implementation("androidx.compose.ui:ui-tooling-preview")
implementation("androidx.compose.runtime:runtime-livedata")
Expand All @@ -96,7 +96,7 @@ dependencies {
implementation("org.jetbrains.kotlinx:kotlinx-collections-immutable:0.3.5")

// Room
val roomVersion = "2.5.1"
val roomVersion = "2.5.2"
implementation("androidx.room:room-runtime:$roomVersion")
implementation("androidx.room:room-ktx:$roomVersion")
annotationProcessor("androidx.room:room-compiler:$roomVersion")
Expand All @@ -106,13 +106,13 @@ dependencies {
implementation("app.revanced:revanced-patcher:11.0.4")

// Signing
implementation("com.android.tools.build:apksig:8.2.0-alpha05")
implementation("com.android.tools.build:apksig:8.2.0-alpha10")
implementation("org.bouncycastle:bcpkix-jdk15on:1.70")

// Koin
val koinVersion = "3.4.0"
val koinVersion = "3.4.2"
implementation("io.insert-koin:koin-android:$koinVersion")
implementation("io.insert-koin:koin-androidx-compose:3.4.4")
implementation("io.insert-koin:koin-androidx-compose:3.4.5")
implementation("io.insert-koin:koin-androidx-workmanager:$koinVersion")

// Compose Navigation
Expand All @@ -122,7 +122,7 @@ dependencies {
implementation("com.mikepenz:aboutlibraries-compose:10.8.0")

// Ktor
val ktorVersion = "2.3.0"
val ktorVersion = "2.3.2"
implementation("io.ktor:ktor-client-core:$ktorVersion")
implementation("io.ktor:ktor-client-logging:$ktorVersion")
implementation("io.ktor:ktor-client-okhttp:$ktorVersion")
Expand Down
6 changes: 3 additions & 3 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id("com.android.application") version "8.0.1" apply false
id("org.jetbrains.kotlin.android") version "1.8.21" apply false
id("com.google.devtools.ksp") version "1.8.21-1.0.11" apply false
id("com.android.application") version "8.0.2" apply false
id("org.jetbrains.kotlin.android") version "1.8.22" apply false
id("com.google.devtools.ksp") version "1.8.22-1.0.11" apply false
}

0 comments on commit 400163b

Please sign in to comment.