2024-12-13 01:09:52 -08:00
|
|
|
plugins {
|
|
|
|
id("com.android.application")
|
|
|
|
kotlin("android")
|
|
|
|
}
|
|
|
|
|
|
|
|
android {
|
|
|
|
namespace = "com.topjohnwu.magisk.test"
|
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
applicationId = "com.topjohnwu.magisk.test"
|
|
|
|
versionCode = 1
|
|
|
|
versionName = "1.0"
|
2024-12-25 20:17:57 -08:00
|
|
|
proguardFile("proguard-rules.pro")
|
|
|
|
}
|
|
|
|
|
|
|
|
buildTypes {
|
|
|
|
release {
|
|
|
|
isMinifyEnabled = true
|
|
|
|
}
|
2024-12-13 01:09:52 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2025-02-12 17:02:49 +08:00
|
|
|
setupTestApk()
|
2024-12-13 01:09:52 -08:00
|
|
|
|
|
|
|
dependencies {
|
|
|
|
implementation(libs.test.runner)
|
|
|
|
implementation(libs.test.rules)
|
|
|
|
implementation(libs.test.junit)
|
2024-12-24 17:11:08 -08:00
|
|
|
implementation(libs.test.uiautomator)
|
2024-12-13 01:09:52 -08:00
|
|
|
}
|