mirror of
https://github.com/openclaw/openclaw.git
synced 2026-08-05 20:01:34 +00:00
* fix(android): use configured SDK for screenshot AVDs * fix(android): keep chat jump control clear of messages * fix(wear): ignore stale control completions * fix(android): advertise node permission changes * fix(android): select play flavor for benchmarks * test(android): decouple cron benchmark from copy * fix(android): install play variant in perf scripts * fix(wear): clear gateway control busy state * fix(android): surface voice e2e connection errors * test(android): cover common live node commands * fix(android): retain share parsing across recreation * fix(android): retain permission requests across recreation * fix(wear): bind realtime audio to talk attempts * fix(android): track active permission host * fix(wear): own gateway control busy state * fix(wear): admit realtime channels by attempt * fix(android): refresh permissions on top resume * fix(wear): serialize reconnect retirement with writes * chore(i18n): refresh native source inventory * fix(wear): retain pending audio through start RPC * fix(wear): negotiate realtime channel compatibility * test(wear): assert reconnect outcome without owner churn * fix(android): move settings prompt with active host * fix(wear): reject stale relay starts * chore(changelog): leave notes to release generation
48 lines
1.1 KiB
Kotlin
48 lines
1.1 KiB
Kotlin
plugins {
|
|
alias(libs.plugins.android.test)
|
|
alias(libs.plugins.ktlint)
|
|
}
|
|
|
|
android {
|
|
namespace = "ai.openclaw.app.benchmark"
|
|
// Match the target app while targetSdk remains an independent behavior opt-in.
|
|
compileSdk = 37
|
|
|
|
defaultConfig {
|
|
minSdk = 31
|
|
targetSdk = 36
|
|
missingDimensionStrategy("store", "play")
|
|
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
|
testInstrumentationRunnerArguments["androidx.benchmark.suppressErrors"] = "DEBUGGABLE,EMULATOR"
|
|
}
|
|
|
|
targetProjectPath = ":app"
|
|
experimentalProperties["android.experimental.self-instrumenting"] = true
|
|
|
|
compileOptions {
|
|
sourceCompatibility = JavaVersion.VERSION_17
|
|
targetCompatibility = JavaVersion.VERSION_17
|
|
}
|
|
}
|
|
|
|
kotlin {
|
|
compilerOptions {
|
|
jvmTarget.set(org.jetbrains.kotlin.gradle.dsl.JvmTarget.JVM_17)
|
|
allWarningsAsErrors.set(true)
|
|
}
|
|
}
|
|
|
|
ktlint {
|
|
android.set(true)
|
|
ignoreFailures.set(false)
|
|
filter {
|
|
exclude("**/build/**")
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation(libs.androidx.benchmark.macro.junit4)
|
|
implementation(libs.androidx.test.ext.junit)
|
|
implementation(libs.androidx.uiautomator)
|
|
}
|