From b5c09832df20a5584f1c19662512006db0e59112 Mon Sep 17 00:00:00 2001 From: Carter Jernigan Date: Thu, 25 Aug 2022 16:20:51 -0400 Subject: [PATCH] [#578] Use API 33 devices on Firebase Test Lab --- app/build.gradle.kts | 6 +++--- build.gradle.kts | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 589803fa..a3e75c38 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -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()) diff --git a/build.gradle.kts b/build.gradle.kts index 05cfd1c5..4e2aa2ca 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -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")