Skip to content

Commit fb3fab7

Browse files
authored
updated ui test dependencies and benchmark device (#2353)
updated ui test dependencies for Android 13 updated benchmark device
1 parent 3ac76b6 commit fb3fab7

File tree

3 files changed

+8
-10
lines changed

3 files changed

+8
-10
lines changed

.sauce/sentry-uitest-android-benchmark-lite.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ suites:
2020

2121
- name: "Android 11 (api 30)"
2222
devices:
23-
- id: Google_Pixel_2_real_us # Google Pixel 2 - api 30 (11)
23+
- id: OnePlus_Nord_N200_5G_real_us # OnePlus Nord N200 5G - api 30 (11)
2424

2525
artifacts:
2626
download:

.sauce/sentry-uitest-android-benchmark.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ suites:
2828
devices:
2929
- id: OnePlus_9_Pro_real_us # OnePlus 9 Pro - api 30 (11) - high end
3030
- id: Google_Pixel_4_real_us # Google Pixel 4 - api 30 (11) - mid end
31-
- id: Google_Pixel_2_real_us # Google Pixel 2 - api 30 (11) - low end
31+
- id: OnePlus_Nord_N200_5G_real_us # OnePlus Nord N200 5G - api 30 (11) - low end
3232

3333
- name: "Android 10 (api 29)"
3434
devices:

buildSrc/src/main/java/Config.kt

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -139,18 +139,16 @@ object Config {
139139
}
140140

141141
object TestLibs {
142-
private val androidxTestVersion = "1.4.0"
143-
144-
// todo This beta version is needed to run ui tests on Android 13.
145-
// It will be replaced by androidxTestVersion when 1.5.0 will be out.
146-
private val androidxTestVersionBeta = "1.5.0-beta01"
147-
private val espressoVersion = "3.4.0"
142+
// todo These rc versions are needed to run ui tests on Android 13.
143+
// They will be replaced by stable version when 1.5.0/3.5.0 will be out.
144+
private val androidxTestVersion = "1.5.0-rc01"
145+
private val espressoVersion = "3.5.0-rc01"
148146

149147
val androidJUnitRunner = "androidx.test.runner.AndroidJUnitRunner"
150148
val kotlinTestJunit = "org.jetbrains.kotlin:kotlin-test-junit:$kotlinVersion"
151-
val androidxCore = "androidx.test:core:$androidxTestVersionBeta"
149+
val androidxCore = "androidx.test:core:$androidxTestVersion"
152150
val androidxRunner = "androidx.test:runner:$androidxTestVersion"
153-
val androidxTestCoreKtx = "androidx.test:core-ktx:$androidxTestVersionBeta"
151+
val androidxTestCoreKtx = "androidx.test:core-ktx:$androidxTestVersion"
154152
val androidxTestRules = "androidx.test:rules:$androidxTestVersion"
155153
val espressoCore = "androidx.test.espresso:espresso-core:$espressoVersion"
156154
val espressoIdlingResource = "androidx.test.espresso:espresso-idling-resource:$espressoVersion"

0 commit comments

Comments
 (0)