Skip to content

Commit e857d2e

Browse files
committed
address gemini code assist feedback
1 parent f807f13 commit e857d2e

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

gradle/libs.versions.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ androidx-navigation3 = "1.1.0-beta01"
2626
androidx-paging = "3.4.2"
2727
androidx-startup-runtime = "1.2.0"
2828
androidx-test = "1.7.0"
29+
androidx-test-core-ktx = "1.6.1"
2930
androidx-test-espresso = "3.7.0"
3031
androidx-test-junit = "1.3.0"
3132
androidx-window = "1.5.1"
@@ -45,7 +46,6 @@ coil = "2.7.0"
4546
compileSdk = "36"
4647
compose-latest = "1.10.5"
4748
composeUiTooling = "1.5.6"
48-
coreKtx = "1.6.1"
4949
coreSplashscreen = "1.2.0"
5050
coroutines = "1.10.2"
5151
dataStore = "1.2.1"
@@ -75,7 +75,7 @@ material3-adaptive = "1.2.0"
7575
material3-adaptive-navigation-suite = "1.4.0"
7676
media3 = "1.9.2"
7777
media3Ui = "1.9.2"
78-
mockitoKotlin = "4.1.0"
78+
mockitoKotlin = "5.3.1"
7979
# @keep
8080
minSdk = "36"
8181
okHttp = "5.3.2"
@@ -231,7 +231,7 @@ billing = { module = "com.android.billingclient:billing", version.ref = "playbil
231231
coil-kt-compose = { module = "io.coil-kt:coil-compose", version.ref = "coil" }
232232
compose-foundation = { module = "androidx.wear.compose:compose-foundation", version.ref = "wearComposeFoundation" }
233233
compose-ui-tooling = { module = "androidx.wear.compose:compose-ui-tooling", version.ref = "composeUiTooling" }
234-
core-ktx = { module = "androidx.test:core-ktx", version.ref = "coreKtx" }
234+
androidx-test-core-ktx = { module = "androidx.test:core-ktx", version.ref = "androidx-test-core-ktx" }
235235
firebase-ai = { module = "com.google.firebase:firebase-ai" }
236236
firebase-bom = { module = "com.google.firebase:firebase-bom", version.ref = "firebase-bom" }
237237
glide-compose = { module = "com.github.bumptech.glide:compose", version.ref = "glide" }

xr/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,6 @@ dependencies {
7676
testImplementation(libs.androidx.xr.projected.testing)
7777
testImplementation(libs.truth)
7878
testImplementation(libs.robolectric)
79-
testImplementation(libs.core.ktx)
79+
testImplementation(libs.androidx.test.core.ktx)
8080
testImplementation(libs.mockito.kotlin)
8181
}

xr/src/test/java/com/example/xr/projected/ProjectedFeatureTests.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ import org.robolectric.annotation.Config
3535
@RunWith(AndroidJUnit4::class)
3636
@Config(sdk = [Build.VERSION_CODES.UPSIDE_DOWN_CAKE])
3737
@OptIn(ExperimentalProjectedApi::class)
38-
class ProjectedFeatureTest {
38+
class ProjectedFeatureTests {
3939
// [START androidxr_projected_test_basic_setup]
4040

4141
@get:Rule

0 commit comments

Comments
 (0)