[#578] Use API 33 devices on Firebase Test Lab

This commit is contained in:
Carter Jernigan 2022-08-25 16:20:51 -04:00 committed by Carter Jernigan
parent 73c86ef249
commit b5c09832df
2 changed files with 5 additions and 5 deletions

View File

@ -251,7 +251,7 @@ fladle {
val FIREBASE_TEST_LAB_MIN_SDK = 23
@Suppress("MagicNumber", "PropertyName", "VariableNaming")
val FIREBASE_TEST_LAB_MAX_SDK = 30
val FIREBASE_TEST_LAB_MAX_SDK = 33
val minSdkVersion = run {
val buildMinSdk = project.properties["ANDROID_APP_MIN_SDK_VERSION"].toString().toInt()
@ -285,7 +285,7 @@ fladle {
devices.addAll(
mapOf("model" to "Pixel2", "version" to minSdkVersion),
mapOf("model" to "Pixel2", "version" to targetSdkVersion)
mapOf("model" to "Pixel2.arm", "version" to targetSdkVersion)
)
flankVersion.set(libs.versions.flank.get())
@ -303,7 +303,7 @@ fladle {
devices.addAll(
mapOf("model" to "Pixel2", "version" to minSdkVersion),
mapOf("model" to "Pixel2", "version" to targetSdkVersion)
mapOf("model" to "Pixel2.arm", "version" to targetSdkVersion)
)
flankVersion.set(libs.versions.flank.get())

View File

@ -70,7 +70,7 @@ fladle {
val FIREBASE_TEST_LAB_MIN_SDK = 23
@Suppress("MagicNumber", "PropertyName", "VariableNaming")
val FIREBASE_TEST_LAB_MAX_SDK = 30
val FIREBASE_TEST_LAB_MAX_SDK = 33
val minSdkVersion = run {
// Fladle will use the app APK as the additional APK, so we have to
@ -94,7 +94,7 @@ fladle {
devices.addAll(
mapOf("model" to "Pixel2", "version" to minSdkVersion),
mapOf("model" to "Pixel2", "version" to targetSdkVersion)
mapOf("model" to "Pixel2.arm", "version" to targetSdkVersion)
)
@Suppress("MagicNumber")