Files
coco 723ce1af5c a
2026-07-03 15:12:48 +08:00

57 lines
1.4 KiB
Groovy

plugins {
id 'com.android.test'
id 'org.jetbrains.kotlin.android'
}
android {
compileSdk 32
compileOptions {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
kotlinOptions {
jvmTarget = "1.8"
}
defaultConfig {
minSdk 23
targetSdk 32
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
// This benchmark buildType is used for benchmarking, and should function like your
// release build (for example, with minification on). It's signed with a debug key
// for easy local/CI testing.
benchmark {
debuggable = true
signingConfig = debug.signingConfig
matchingFallbacks = ['release']
}
}
targetProjectPath = ":app"
experimentalProperties["android.experimental.self-instrumenting"] = true
}
dependencies {
implementation libs.androidx.benchmark.macro
implementation libs.androidx.profileinstaller
implementation libs.test.androidx.core
implementation libs.test.androidx.espressoCore
implementation libs.test.androidx.ext
implementation libs.test.androidx.runner
implementation libs.test.androidx.rules
implementation libs.test.androidx.uiautomator
}
androidComponents {
beforeVariants(selector().all()) {
enabled = buildType == "benchmark"
}
}