Add statusbar test harness app

This commit is contained in:
ajp_anton
2026-07-01 19:39:49 +00:00
parent 5df8bd9e78
commit 7be5f64262
13 changed files with 1129 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
plugins {
id("com.android.application")
}
android {
namespace = "se.ajpanton.statusbartweak.harness"
compileSdk = 36
defaultConfig {
applicationId = "se.ajpanton.statusbartweak.harness"
minSdk = 26
targetSdk = 36
versionCode = 1
versionName = "1.0"
}
compileOptions {
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}
}