From c27cb59ee707f0607fe17ec1fc840ad05f338136 Mon Sep 17 00:00:00 2001 From: Isira Seneviratne Date: Tue, 9 Jan 2024 12:17:53 +0530 Subject: [PATCH] Update baseline config --- baselineProfile/build.gradle.kts | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/baselineProfile/build.gradle.kts b/baselineProfile/build.gradle.kts index 958ed8f8e..9d92f321b 100644 --- a/baselineProfile/build.gradle.kts +++ b/baselineProfile/build.gradle.kts @@ -28,21 +28,21 @@ android { targetProjectPath = ":app" -// testOptions.managedDevices.devices { -// create("pixel6Api34") { -// device = "Pixel 6" -// apiLevel = 34 -// systemImageSource = "google" -// } -// } + testOptions.managedDevices.devices { + create("pixel6Api34") { + device = "Pixel 6" + apiLevel = 34 + systemImageSource = "google" + } + } } // This is the configuration block for the Baseline Profile plugin. // You can specify to run the generators on a managed devices or connected devices. // For connected devices, API 28+ (rooted) or 33+ (not rooted) is required. baselineProfile { - // managedDevices += "pixel6Api34" - useConnectedDevices = true + managedDevices += "pixel6Api34" + useConnectedDevices = false } dependencies {