diff --git a/camerax/build.gradle.kts b/camerax/build.gradle.kts index 14985c6e3..b5118473c 100644 --- a/camerax/build.gradle.kts +++ b/camerax/build.gradle.kts @@ -23,12 +23,12 @@ plugins { android { namespace = "com.example.camerax.snippets" - compileSdk = 36 + compileSdk = libs.versions.compileSdk.get().toInt() defaultConfig { applicationId = "com.example.camerax.snippets" minSdk = 23 - targetSdk = 36 + targetSdk = libs.versions.targetSdk.get().toInt() versionCode = 1 versionName = "1.0" diff --git a/contacts/build.gradle.kts b/contacts/build.gradle.kts index d35c0fe8f..a344710fc 100644 --- a/contacts/build.gradle.kts +++ b/contacts/build.gradle.kts @@ -5,12 +5,12 @@ plugins { android { namespace = "com.example.contacts" - compileSdk = 37 + compileSdk = libs.versions.compileSdk.get().toInt() defaultConfig { applicationId = "com.example.contacts" minSdk = 24 - targetSdk = 37 + targetSdk = libs.versions.targetSdk.get().toInt() versionCode = 1 versionName = "1.0" diff --git a/datastore/build.gradle.kts b/datastore/build.gradle.kts index e8364bd97..ac0e03abe 100644 --- a/datastore/build.gradle.kts +++ b/datastore/build.gradle.kts @@ -14,12 +14,12 @@ plugins { android { namespace = "com.example.datastore.snippets" - compileSdk = 36 + compileSdk = libs.versions.compileSdk.get().toInt() defaultConfig { applicationId = "com.example.datastore.snippets" minSdk = 23 - targetSdk = 36 + targetSdk = libs.versions.targetSdk.get().toInt() versionCode = 1 versionName = "1.0" diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 3bd830def..4df6f7ce0 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -8,9 +8,9 @@ androidx-appcompat = "1.7.1" androidx-appfunctions = "1.0.0-alpha08" androidx-cameraX = "1.6.0" androidx-car = "1.7.0" -androidx-compose-bom = "2026.03.00" +androidx-compose-bom = "2026.05.00" androidx-compose-ui-test = "1.7.0-alpha08" -androidx-compose-ui-test-junit4-accessibility = "1.11.0-beta01" +androidx-compose-ui-test-junit4-accessibility = "1.11.1" androidx-constraintlayout = "2.2.1" androidx-constraintlayout-compose = "1.1.1" androidx-coordinator-layout = "1.3.0" @@ -26,7 +26,7 @@ androidx-lifecycle-runtime-compose = "2.10.0" androidx-lifecycle-viewmodel-navigation3 = "2.10.0-beta01" androidx-navigation = "2.9.7" androidx-navigation3 = "1.1.0" -androidx-paging = "3.4.2" +androidx-paging = "3.5.0" androidx-startup-runtime = "1.2.0" androidx-test = "1.7.0" androidx-test-core-ktx = "1.6.1" @@ -41,8 +41,8 @@ appcompat = "1.7.1" coil = "2.7.0" # @keep compileSdk = "37" -compose-latest = "1.10.5" -composeUiTooling = "1.5.6" +compose-latest = "1.11.1" +composeUiTooling = "1.6.1" coreSplashscreen = "1.2.0" coroutines = "1.10.2" crossdeviceprompt = "0.0.1" @@ -68,7 +68,7 @@ kotlinxSerialization = "1.10.0" ksp = "2.3.6" ktlint = "1.5.0" lifecycleService = "2.10.0" -maps-compose = "8.2.1" +maps-compose = "8.3.0" material = "1.14.0-alpha10" material3-adaptive = "1.2.0" material3-adaptive-navigation-suite = "1.4.0" @@ -94,14 +94,14 @@ targetSdk = "37" tiles = "1.5.0" tracing = "1.3.0" truth = "1.4.4" -tvComposeMaterial3 = "1.1.0-beta01" +tvComposeMaterial3 = "1.1.0" validatorPush = "1.0.0-alpha09" version-catalog-update = "1.1.0" watchfaceComplicationsDataSourceKtx = "1.3.0" wear = "1.4.0" -wearComposeFoundation = "1.6.0-rc01" -wearComposeMaterial = "1.6.0-rc01" -wearComposeMaterial3 = "1.6.0-rc01" +wearComposeFoundation = "1.6.1" +wearComposeMaterial = "1.6.1" +wearComposeMaterial3 = "1.6.1" wearInput = "1.2.0" wearOngoing = "1.1.0" wearPhoneInteractions = "1.1.0" diff --git a/healthconnect/build.gradle.kts b/healthconnect/build.gradle.kts index 47875ffde..5d6a7cf71 100644 --- a/healthconnect/build.gradle.kts +++ b/healthconnect/build.gradle.kts @@ -5,12 +5,12 @@ plugins { android { namespace = "com.example.healthconnect" - compileSdk = 37 + compileSdk = libs.versions.compileSdk.get().toInt() defaultConfig { applicationId = "com.example.healthconnect" minSdk = 26 - targetSdk = 37 + targetSdk = libs.versions.targetSdk.get().toInt() versionCode = 1 versionName = "1.0" diff --git a/telecom/build.gradle.kts b/telecom/build.gradle.kts index 3570215f8..5811e2792 100644 --- a/telecom/build.gradle.kts +++ b/telecom/build.gradle.kts @@ -5,14 +5,12 @@ plugins { android { namespace = "com.example.telecom" - compileSdk { - version = release(37) - } + compileSdk = libs.versions.compileSdk.get().toInt() defaultConfig { applicationId = "com.example.telecom" minSdk = 24 - targetSdk = 37 + targetSdk = libs.versions.targetSdk.get().toInt() versionCode = 1 versionName = "1.0" diff --git a/tv/build.gradle.kts b/tv/build.gradle.kts index 269758e42..2be4724c9 100644 --- a/tv/build.gradle.kts +++ b/tv/build.gradle.kts @@ -5,12 +5,12 @@ plugins { android { namespace = "com.example.tv" - compileSdk = 36 + compileSdk = libs.versions.compileSdk.get().toInt() defaultConfig { applicationId = "com.example.tv" minSdk = 28 - targetSdk = 36 + targetSdk = libs.versions.targetSdk.get().toInt() versionCode = 1 versionName = "1.0" } diff --git a/watchface/build.gradle.kts b/watchface/build.gradle.kts index 8f888f089..4d16c3331 100644 --- a/watchface/build.gradle.kts +++ b/watchface/build.gradle.kts @@ -19,12 +19,12 @@ plugins { android { namespace = "com.example.simpledigital" - compileSdk = 36 + compileSdk = libs.versions.compileSdk.get().toInt() defaultConfig { applicationId = "com.example.simpledigital" minSdk = 36 - targetSdk = 36 + targetSdk = libs.versions.targetSdk.get().toInt() versionCode = 1 versionName = "1.0.0" } diff --git a/wear/build.gradle.kts b/wear/build.gradle.kts index a382d6023..41dca43b6 100644 --- a/wear/build.gradle.kts +++ b/wear/build.gradle.kts @@ -8,12 +8,12 @@ plugins { android { namespace = "com.example.wear" - compileSdk = 36 + compileSdk = libs.versions.compileSdk.get().toInt() defaultConfig { applicationId = "com.example.wear" minSdk = 33 - targetSdk = 36 + targetSdk = libs.versions.targetSdk.get().toInt() versionCode = 1 versionName = "1.0" vectorDrawables { diff --git a/wearcompanion/build.gradle.kts b/wearcompanion/build.gradle.kts index cf841b743..e442c9764 100644 --- a/wearcompanion/build.gradle.kts +++ b/wearcompanion/build.gradle.kts @@ -5,12 +5,12 @@ plugins { android { namespace = "com.example.wear.snippets" - compileSdk = 36 + compileSdk = libs.versions.compileSdk.get().toInt() defaultConfig { applicationId = "com.example.wear.snippets" minSdk = 28 - targetSdk = 36 + targetSdk = libs.versions.targetSdk.get().toInt() versionCode = 1 versionName = "1.0"