mirror of
https://github.com/AChep/keyguard-app.git
synced 2025-01-06 19:57:05 +01:00
62 lines
1.8 KiB
Plaintext
62 lines
1.8 KiB
Plaintext
import com.android.build.api.dsl.ManagedVirtualDevice
|
|
|
|
plugins {
|
|
alias(libs.plugins.android.test)
|
|
alias(libs.plugins.kotlin.android)
|
|
alias(libs.plugins.baseline.profile)
|
|
}
|
|
|
|
android {
|
|
compileSdk = libs.versions.androidCompileSdk.get().toInt()
|
|
namespace = "com.artemchep.macrobenchmark"
|
|
|
|
defaultConfig {
|
|
minSdk = libs.versions.androidMinSdk.get().toInt()
|
|
targetSdk = libs.versions.androidTargetSdk.get().toInt()
|
|
|
|
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
|
}
|
|
|
|
compileOptions {
|
|
sourceCompatibility = JavaVersion.VERSION_11
|
|
targetCompatibility = JavaVersion.VERSION_11
|
|
}
|
|
kotlinOptions {
|
|
jvmTarget = "11"
|
|
}
|
|
|
|
targetProjectPath = ":androidApp"
|
|
// Enable the benchmark to run separately from the app process
|
|
experimentalProperties["android.experimental.self-instrumenting"] = true
|
|
|
|
buildFeatures {
|
|
buildConfig = true
|
|
}
|
|
|
|
val accountManagementDimension = "accountManagement"
|
|
flavorDimensions += accountManagementDimension
|
|
productFlavors {
|
|
maybeCreate("playStore").apply {
|
|
dimension = accountManagementDimension
|
|
}
|
|
maybeCreate("none").apply {
|
|
dimension = accountManagementDimension
|
|
}
|
|
}
|
|
}
|
|
|
|
baselineProfile {
|
|
// This enables using connected devices to generate profiles. The default is true.
|
|
// When using connected devices, they must be rooted or API 33 and higher.
|
|
useConnectedDevices = true
|
|
}
|
|
|
|
dependencies {
|
|
implementation(project(":androidTest"))
|
|
implementation(libs.androidx.benchmark.macro.junit4)
|
|
implementation(libs.androidx.test.espresso.core)
|
|
implementation(libs.androidx.test.ext.junit)
|
|
implementation(libs.androidx.test.uiautomator)
|
|
implementation(libs.androidx.profileinstaller)
|
|
}
|