Skip to content

Commit 37d3c68

Browse files
committed
Updated dependencies to the latest version
1 parent 56be8a5 commit 37d3c68

File tree

6 files changed

+25
-23
lines changed

6 files changed

+25
-23
lines changed

app/build.gradle.kts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,10 @@ android {
2424
targetCompatibility = JavaVersion.VERSION_17
2525
}
2626

27-
kotlinOptions {
28-
jvmTarget = JavaVersion.VERSION_17.toString()
27+
kotlin {
28+
jvmToolchain(17)
2929
}
30+
3031
buildFeatures {
3132
compose = true
3233
}

appupdater/build.gradle.kts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,10 @@ android {
1616
targetCompatibility = JavaVersion.VERSION_17
1717
}
1818

19-
kotlinOptions {
20-
jvmTarget = JavaVersion.VERSION_17.toString()
19+
kotlin {
20+
jvmToolchain(17)
2121
}
22+
2223
buildFeatures {
2324
viewBinding = true
2425
}

compose/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ android {
2323
sourceCompatibility = JavaVersion.VERSION_17
2424
targetCompatibility = JavaVersion.VERSION_17
2525
}
26-
kotlinOptions {
27-
jvmTarget = JavaVersion.VERSION_17.toString()
26+
kotlin {
27+
jvmToolchain(17)
2828
}
2929
buildFeatures {
3030
compose = true

directdownload/build.gradle.kts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ android {
1515
sourceCompatibility = JavaVersion.VERSION_17
1616
targetCompatibility = JavaVersion.VERSION_17
1717
}
18-
kotlinOptions {
19-
jvmTarget = JavaVersion.VERSION_17.toString()
18+
kotlin {
19+
jvmToolchain(17)
2020
}
2121
namespace = "com.pouyaheydari.appupdater.directdownload"
2222
}
@@ -31,8 +31,8 @@ dependencies {
3131
testImplementation(libs.junit4)
3232
testImplementation(libs.mockito)
3333
testImplementation(libs.mockito.kotlin)
34-
testImplementation (libs.kotlinx.coroutines.test)
35-
testImplementation (libs.roboelectric)
34+
testImplementation(libs.kotlinx.coroutines.test)
35+
testImplementation(libs.roboelectric)
3636

3737
androidTestImplementation(libs.androidx.test.junit)
3838
androidTestImplementation(libs.androidx.test.rules)

gradle/libs.versions.toml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -3,27 +3,27 @@ appVersion = "1000"
33
compileSdkVersion = "36"
44
minSdkVersion = "23"
55
targetSdkVersion = "36"
6-
agp = "8.12.0"
7-
kotlin = "2.2.0"
6+
agp = "8.13.2"
7+
kotlin = "2.2.21"
88
appcompat = "1.7.1"
9-
androidXCore = "1.16.0"
9+
androidXCore = "1.17.0"
1010
constraintLayout = "2.2.1"
1111
junit4 = "4.13.2"
1212
androidTestJUnit = "1.3.0"
1313
androidTestRules = "1.7.0"
1414
androidTestEspresso = "3.7.0"
1515
recyclerView = "1.4.0"
16-
lifecycle = "2.9.2"
16+
lifecycle = "2.10.0"
1717
coroutines = "1.10.2"
18-
fragment = "1.8.8"
19-
androidxComposeBom = "2025.07.00"
20-
composeActivity = "1.10.1"
21-
mockito = "5.18.0"
22-
mockitoKotlin = "6.0.0"
23-
roboelectric = "4.15.1"
18+
fragment = "1.8.9"
19+
androidxComposeBom = "2025.12.00"
20+
composeActivity = "1.12.1"
21+
mockito = "5.21.0"
22+
mockitoKotlin = "6.1.0"
23+
roboelectric = "4.16"
2424
turbine = "1.2.1"
2525
uiautomator = "2.3.0"
26-
mavenPublish = "0.34.0"
26+
mavenPublish = "0.35.0"
2727

2828
[libraries]
2929
androidx-appcompat = { group = "androidx.appcompat", name = "appcompat", version.ref = "appcompat" }

store/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ android {
1616
targetCompatibility = JavaVersion.VERSION_17
1717
}
1818

19-
kotlinOptions {
20-
jvmTarget = JavaVersion.VERSION_17.toString()
19+
kotlin {
20+
jvmToolchain(17)
2121
}
2222
namespace = "com.pouyaheydari.appupdater.store"
2323
}

0 commit comments

Comments
 (0)