blob: 51e930b7dd7ebe7c4f3aff732971a3c43e6fdaf7 [file] [log] [blame]
/*
* Copyright (C) 2022 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import com.android.build.api.dsl.ManagedVirtualDevice
plugins {
id("AndroidXPlugin")
id("com.android.test")
id("kotlin-android")
id("androidx.baselineprofile")
}
android {
defaultConfig {
minSdkVersion 23
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
testOptions.managedDevices.devices {
pixel6Api31(ManagedVirtualDevice) {
device = "Pixel 6"
apiLevel = 31
systemImageSource = "aosp"
}
}
targetProjectPath = ":activity:integration-tests:testapp"
namespace "androidx.activity.integration.testapp.baselineprofile"
}
dependencies {
implementation(projectOrArtifact(":benchmark:benchmark-junit4"))
implementation(projectOrArtifact(":benchmark:benchmark-macro-junit4"))
implementation(libs.testRules)
implementation(libs.testExtJunit)
implementation(libs.testCore)
implementation(libs.testRunner)
implementation(libs.testUiautomator)
implementation(libs.testExtTruth)
}
baselineProfile {
managedDevices += "pixel6Api31"
useConnectedDevices = false
}
// This test is disabled because it's only to generate the baseline profile and can work only
// on a gradle ci.
androidx {
deviceTests {
enabled = false
}
}