Skip to content

Commit 68cb6ca

Browse files
committed
Updated to latest deps
1 parent fe20b61 commit 68cb6ca

10 files changed

Lines changed: 61 additions & 60 deletions

File tree

app/build.gradle.kts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@ android {
4343
initWith(buildTypes.getByName("release"))
4444
matchingFallbacks += listOf("release")
4545
isDebuggable = false
46-
baselineProfile.automaticGenerationDuringBuild = false
4746
}
4847
release {
4948
isShrinkResources = true
@@ -52,7 +51,6 @@ android {
5251
getDefaultProguardFile("proguard-android-optimize.txt"),
5352
"proguard-rules.pro",
5453
)
55-
baselineProfile.automaticGenerationDuringBuild = false
5654
configure<CrashlyticsExtension> {
5755
mappingFileUploadEnabled = true
5856
}

build_presubmit_mobile.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,14 @@ set -e
2424
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
2525
echo DIR
2626
# Define the Android SDK version you want to target.
27-
ANDROID_SDK_VERSION="36"
28-
ANDROID_BUILD_TOOLS_VERSION="36.0.0"
27+
ANDROID_SDK_VERSION="37"
28+
ANDROID_BUILD_TOOLS_VERSION="37.0.0"
2929

3030
# Switched from 'google_apis' to 'google_atd' (Google Automated Test Device).
3131
# This system image is designed for headless, automated testing in CI environments
3232
# and is more compatible with software rendering. It will be installed but may not
3333
# be used by the new build command.
34-
# 36 not available yet as per b/432143095
34+
# 37 not available yet as per b/432143095
3535
EMULATOR_IMAGE="system-images;android-35;google_atd;x86_64"
3636

3737
# --- Environment Setup ---

build_presubmit_wear.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,14 @@ set -e
2424
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
2525
echo DIR
2626
# Define the Android SDK version you want to target.
27-
ANDROID_SDK_VERSION="36"
28-
ANDROID_BUILD_TOOLS_VERSION="36.0.0"
27+
ANDROID_SDK_VERSION="37"
28+
ANDROID_BUILD_TOOLS_VERSION="37.0.0"
2929

3030
# Switched from 'google_apis' to 'google_atd' (Google Automated Test Device).
3131
# This system image is designed for headless, automated testing in CI environments
3232
# and is more compatible with software rendering. It will be installed but may not
3333
# be used by the new build command.
34-
# 36 not available yet as per b/432143095
34+
# 37 not available yet as per b/432143095
3535
EMULATOR_IMAGE="system-images;android-35;google_atd;x86_64"
3636

3737
# --- Environment Setup ---

build_release_mobile.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,14 @@ set -e
2323
# Get the script's directory.
2424
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
2525
# Define the Android SDK version you want to target.
26-
ANDROID_SDK_VERSION="36"
27-
ANDROID_BUILD_TOOLS_VERSION="36.0.0"
26+
ANDROID_SDK_VERSION="37"
27+
ANDROID_BUILD_TOOLS_VERSION="37.0.0"
2828

2929
# Switched from 'google_apis' to 'google_atd' (Google Automated Test Device).
3030
# This system image is designed for headless, automated testing in CI environments
3131
# and is more compatible with software rendering. It will be installed but may not
3232
# be used by the new build command.
33-
# 36 not available yet as per b/432143095
33+
# 37 not available yet as per b/432143095
3434
EMULATOR_IMAGE="system-images;android-35;google_atd;x86_64"
3535

3636
# --- Environment Setup ---

build_release_wear.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,14 @@ set -e
2323
# Get the script's directory.
2424
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
2525
# Define the Android SDK version you want to target.
26-
ANDROID_SDK_VERSION="36"
27-
ANDROID_BUILD_TOOLS_VERSION="36.0.0"
26+
ANDROID_SDK_VERSION="37"
27+
ANDROID_BUILD_TOOLS_VERSION="37.0.0"
2828

2929
# Switched from 'google_apis' to 'google_atd' (Google Automated Test Device).
3030
# This system image is designed for headless, automated testing in CI environments
3131
# and is more compatible with software rendering. It will be installed but may not
3232
# be used by the new build command.
33-
# 36 not available yet as per b/432143095
33+
# 37 not available yet as per b/432143095
3434
EMULATOR_IMAGE="system-images;android-35;google_atd;x86_64"
3535

3636
# --- Environment Setup ---

core/theme/build.gradle.kts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ android {
4242
dependencies {
4343
implementation(libs.androidx.ui.text.google.fonts)
4444
implementation(platform(libs.androidx.compose.bom))
45+
implementation(libs.androidx.compose.foundation)
4546
implementation(libs.androidx.ui.tooling.preview)
4647
implementation(libs.androidx.material3)
4748
implementation(projects.core.util)

feature/results/src/main/java/com/android/developers/androidify/customize/xr/CustomizeExportScreenSpatial.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,9 @@ import androidx.xr.compose.spatial.Orbiter
3535
import androidx.xr.compose.spatial.OrbiterOffsetType
3636
import androidx.xr.compose.subspace.SpatialBox
3737
import androidx.xr.compose.subspace.SpatialColumn
38-
import androidx.xr.compose.subspace.SpatialLayoutSpacer
3938
import androidx.xr.compose.subspace.SpatialPanel
4039
import androidx.xr.compose.subspace.SpatialRow
40+
import androidx.xr.compose.subspace.SpatialSpacer
4141
import androidx.xr.compose.subspace.layout.SubspaceModifier
4242
import androidx.xr.compose.subspace.layout.fillMaxHeight
4343
import androidx.xr.compose.subspace.layout.fillMaxWidth
@@ -109,7 +109,7 @@ fun CustomizeExportLayoutSpatial(
109109
}
110110
}
111111
}
112-
SpatialLayoutSpacer(SubspaceModifier.width(48.dp))
112+
SpatialSpacer(SubspaceModifier.width(48.dp))
113113
SpatialBox(SubspaceModifier.fillMaxHeight(0.7f)) {
114114
SpatialPanel(
115115
modifier = SubspaceModifier.offset(z = 10.dp).fillMaxWidth(0.3f),

gradle/libs.versions.toml

Lines changed: 43 additions & 41 deletions
Original file line numberDiff line numberDiff line change
@@ -3,83 +3,84 @@
33
appVersionCode = "10"
44
appVersionName = "1.3.0"
55
appVersionWearOffset = "60000000"
6-
agp = "9.0.0"
7-
bcpkixJdk18on = "1.83"
6+
agp = "9.2.1"
7+
bcpkixJdk18on = "1.84"
88
core = "1.7.0"
9-
extensionsXr = "1.1.0"
9+
extensionsXr = "1.3.0"
1010
leakcanaryAndroid = "2.14"
1111
javaVersion = "17"
1212

1313
#dependencies
1414
accompanist = "0.37.3"
15-
activityCompose = "1.12.1"
15+
activityCompose = "1.13.0"
1616
adaptive = "1.2.0"
17-
apksig = "9.0.0-alpha06"
17+
apksig = "9.2.1"
1818
appcompat = "1.7.1"
19-
baselineprofile = "1.5.0-alpha01"
19+
baselineprofile = "1.5.0-alpha06"
2020
benchmarkMacroJunit4 = "1.4.1"
21-
camerax = "1.5.2"
22-
coilCompose = "3.3.0"
23-
coilGif = "3.3.0"
24-
composeBom = "2025.12.00"
21+
camerax = "1.6.1"
22+
coilCompose = "3.4.0"
23+
coilGif = "3.4.0"
24+
composeBom = "2026.05.01"
2525
concurrent = "1.3.0"
2626
converterGson = "2.11.0"
27-
coreKtx = "1.17.0"
28-
coreSplashscreen = "1.0.1"
29-
crashlytics = "3.0.6"
30-
datastore = "1.1.7"
27+
coreKtx = "1.18.0"
28+
coreSplashscreen = "1.2.0"
29+
crashlytics = "3.0.7"
30+
datastore = "1.2.1"
3131
espressoCore = "3.7.0"
32-
firebaseBom = "34.4.0"
33-
genaiPrompt = "1.0.0-alpha1"
32+
firebaseBom = "34.13.0"
33+
foundation = "1.12.0-alpha03"
34+
genaiPrompt = "1.0.0-beta2"
3435
googleServices = "4.4.4"
35-
googleOss = "17.3.0"
36-
googleOssPlugin = "0.10.10"
37-
guava = "33.5.0-android"
38-
hiltAndroid = "2.59"
36+
googleOss = "17.5.1"
37+
googleOssPlugin = "0.12.0"
38+
guava = "33.6.0-android"
39+
hiltAndroid = "2.59.2"
3940
hiltLifecycleViewmodel = "1.0.0-alpha03"
4041
hiltNavigationCompose = "1.3.0"
4142
junit = "4.13.2"
4243
junitVersion = "1.3.0"
4344
kotlin = "2.3.0"
4445
ksp = "2.3.4"
45-
kotlinxCoroutines = "1.10.2"
46+
kotlinxCoroutines = "1.11.0"
4647
kotlinxSerialization = "2.3.0"
47-
kotlinxSerializationJson = "1.9.0"
48-
kotlinxSerializationProtobuf = "1.9.0"
48+
kotlinxSerializationJson = "1.11.0"
49+
kotlinxSerializationProtobuf = "1.11.0"
4950
ktlint = "1.5.0"
5051
lifecycleRuntimeKtx = "2.10.0"
5152
lifecycleViewmodelNavigation3 = "2.10.0"
5253
loggingInterceptor = "5.3.2"
53-
material3 = "1.5.0-alpha10"
54-
media3 = "1.8.0"
55-
navigation3 = "1.0.0"
56-
okhttp = "4.12.0"
57-
playServicesWearable = "19.0.0"
54+
material3 = "1.5.0-alpha20"
55+
media3 = "1.10.1"
56+
navigation3 = "1.1.2"
57+
okhttp = "5.3.2"
58+
playServicesWearable = "20.0.1"
5859
playServicesBaseTesting = "16.2.0"
5960
poseDetection = "18.0.0-beta5"
6061
profileinstaller = "1.4.1"
6162
retrofit = "2.11.0"
62-
robolectric = "4.16"
63-
spotless = "8.0.0"
63+
robolectric = "4.16.1"
64+
spotless = "8.6.0"
6465
startup = "1.2.0"
6566
runner = "1.7.0"
66-
uiTextGoogleFonts = "1.9.3"
67+
uiTextGoogleFonts = "1.11.2"
6768
uiautomator = "2.4.0-alpha07"
68-
uiTooling = "1.10.0"
69+
uiTooling = "1.11.2"
6970
validatorPush = "1.0.0-alpha09"
7071
watchFacePush = "1.0.0-beta01"
71-
wear = "1.3.0"
72-
wearCompose = "1.6.0-alpha09"
73-
wearComposeTooling = "1.5.6"
74-
wearRemoteInteractions = "1.1.0"
75-
window = "1.5.0"
76-
lifecycleProcess = "2.9.4"
72+
wear = "1.4.0"
73+
wearCompose = "1.6.2"
74+
wearComposeTooling = "1.6.2"
75+
wearRemoteInteractions = "1.2.0"
76+
window = "1.5.1"
77+
lifecycleProcess = "2.10.0"
7778
mlkitCommon = "18.11.0"
7879
mlkitSegmentation = "16.0.0-beta1"
79-
playServicesBase = "18.9.0"
80+
playServicesBase = "18.10.0"
8081
timber = "5.0.1"
81-
workRuntimeKtx = "2.10.5"
82-
xr-compose = "1.0.0-alpha11"
82+
workRuntimeKtx = "2.11.2"
83+
xr-compose = "1.0.0-alpha14"
8384

8485
[libraries]
8586
accompanist-permissions = { module = "com.google.accompanist:accompanist-permissions", version.ref = "accompanist" }
@@ -94,6 +95,7 @@ androidx-camera-camera2 = { module = "androidx.camera:camera-camera2", version.r
9495
androidx-camera-compose = { module = "androidx.camera:camera-compose", version.ref = "camerax" }
9596
androidx-camera-core = { module = "androidx.camera:camera-core", version.ref = "camerax" }
9697
androidx-camera-lifecycle = { group = "androidx.camera", name = "camera-lifecycle", version.ref = "camerax" }
98+
androidx-compose-foundation = { group = "androidx.compose.foundation", name = "foundation", version.ref = "foundation" }
9799
androidx-compose-bom = { group = "androidx.compose", name = "compose-bom", version.ref = "composeBom" }
98100
androidx-concurrent-futures-ktx = { module = "androidx.concurrent:concurrent-futures-ktx", version.ref = "concurrent" }
99101
androidx-core = { module = "androidx.test:core", version.ref = "core" }

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-9.3.0-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-9.4.1-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

settings.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,10 +36,10 @@ plugins {
3636

3737
android {
3838
compileSdk {
39-
version = release(36)
39+
version = release(37)
4040
}
4141
targetSdk {
42-
version = release(36)
42+
version = release(37)
4343
}
4444
minSdk {
4545
version = release(26)

0 commit comments

Comments
 (0)