Skip to content

Commit 3cec776

Browse files
committed
Update dependencies
1 parent 0630997 commit 3cec776

File tree

6 files changed

+22
-23
lines changed

6 files changed

+22
-23
lines changed

app/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile>().all {
4545

4646
android {
4747
namespace = "io.github.chrisimx.scanbridge"
48-
compileSdk = 35
48+
compileSdk = 36
4949

5050
androidResources {
5151
generateLocaleConfig = true
@@ -54,7 +54,7 @@ android {
5454
defaultConfig {
5555
applicationId = "io.github.chrisimx.scanbridge"
5656
minSdk = 28
57-
targetSdk = 35
57+
targetSdk = 36
5858
versionCode = 1_004_000 // format is MAJ_MIN_PAT with always 3 digits
5959
versionName = "1.4.0"
6060

app/src/main/java/io/github/chrisimx/scanbridge/AppSettingsScreen.kt

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ import android.content.SharedPreferences
2525
import androidx.activity.compose.LocalActivity
2626
import androidx.compose.foundation.layout.Box
2727
import androidx.compose.foundation.layout.Column
28-
import androidx.compose.foundation.layout.ExperimentalLayoutApi
2928
import androidx.compose.foundation.layout.PaddingValues
3029
import androidx.compose.foundation.layout.Row
3130
import androidx.compose.foundation.layout.fillMaxSize
@@ -37,7 +36,7 @@ import androidx.compose.foundation.verticalScroll
3736
import androidx.compose.material3.Button
3837
import androidx.compose.material3.ButtonDefaults
3938
import androidx.compose.material3.Checkbox
40-
import androidx.compose.material3.ExperimentalMaterial3ExpressiveApi
39+
import androidx.compose.material3.ExperimentalMaterial3Api
4140
import androidx.compose.material3.HorizontalDivider
4241
import androidx.compose.material3.Icon
4342
import androidx.compose.material3.MaterialTheme
@@ -237,7 +236,7 @@ fun DebugOptions(
237236
}
238237
}
239238

240-
@OptIn(ExperimentalMaterial3ExpressiveApi::class, ExperimentalLayoutApi::class)
239+
@ExperimentalMaterial3Api
241240
@Composable
242241
fun AppSettingsScreen(innerPadding: PaddingValues) {
243242
val context = LocalContext.current

app/src/main/java/io/github/chrisimx/scanbridge/ScanSettings.kt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,6 @@ import io.github.chrisimx.scanbridge.util.toReadableString
6666
import timber.log.Timber
6767

6868
@OptIn(
69-
ExperimentalMaterial3ExpressiveApi::class,
7069
ExperimentalLayoutApi::class,
7170
ExperimentalFoundationApi::class
7271
)

app/src/main/java/io/github/chrisimx/scanbridge/StartupScreen.kt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ fun ScannerDiscoveryTopBar(header: String) {
6060
)
6161
}
6262

63+
@OptIn(ExperimentalMaterial3Api::class)
6364
@Composable
6465
fun StartupScreen(navController: NavController) {
6566
var selectedItem = rememberSaveable { mutableIntStateOf(0) }

gradle/libs.versions.toml

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,26 @@
11
[versions]
2-
agp = "8.9.2"
3-
coilCompose = "3.1.0"
2+
agp = "8.13.0"
3+
coilCompose = "3.3.0"
44
constraintlayoutCompose = "1.1.1"
55
esclkt = "1.5.2"
6-
itextCore = "9.1.0"
7-
kotlin = "2.1.20"
8-
coreKtx = "1.16.0"
6+
itextCore = "9.3.0"
7+
kotlin = "2.2.20"
8+
coreKtx = "1.17.0"
99
junit = "4.13.2"
10-
junitVersion = "1.2.1"
11-
espressoCore = "3.6.1"
10+
junitVersion = "1.3.0"
11+
espressoCore = "3.7.0"
1212
kotlinReflect = "2.1.20"
13-
kotlinxSerializationJson = "1.8.1"
14-
lifecycleRuntimeKtx = "2.9.1"
15-
activityCompose = "1.10.1"
16-
composeBom = "2025.04.00"
17-
okhttp = "4.12.0"
13+
kotlinxSerializationJson = "1.9.0"
14+
lifecycleRuntimeKtx = "2.9.4"
15+
activityCompose = "1.11.0"
16+
composeBom = "2025.10.00"
17+
okhttp = "5.2.1"
1818
timber = "5.0.1"
19-
zoomable = "0.15.1"
20-
material3 = "1.4.0-alpha15"
19+
zoomable = "0.18.0"
20+
material3 = "1.5.0-alpha06"
2121
materialIcons = "1.7.8"
22-
navigationCompose = "2.9.0"
23-
versionsPlugin = "0.52.0"
22+
navigationCompose = "2.9.5"
23+
versionsPlugin = "0.53.0"
2424

2525
[libraries]
2626
androidx-constraintlayout-compose = { module = "androidx.constraintlayout:constraintlayout-compose", version.ref = "constraintlayoutCompose" }

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
33
distributionSha256Sum=8d97a97984f6cbd2b85fe4c60a743440a347544bf18818048e611f5288d46c94
4-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.12.1-bin.zip
4+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.13-bin.zip
55
networkTimeout=10000
66
validateDistributionUrl=true
77
zipStoreBase=GRADLE_USER_HOME

0 commit comments

Comments
 (0)