mirror of
https://github.com/topjohnwu/Magisk.git
synced 2024-12-20 23:17:37 +00:00
25 lines
440 B
Plaintext
25 lines
440 B
Plaintext
|
plugins {
|
||
|
id("com.android.application")
|
||
|
kotlin("android")
|
||
|
}
|
||
|
|
||
|
android {
|
||
|
namespace = "com.topjohnwu.magisk.test"
|
||
|
|
||
|
defaultConfig {
|
||
|
applicationId = "com.topjohnwu.magisk.test"
|
||
|
versionCode = 1
|
||
|
versionName = "1.0"
|
||
|
}
|
||
|
}
|
||
|
|
||
|
setupAppCommon()
|
||
|
|
||
|
dependencies {
|
||
|
compileOnly(project(":app:core"))
|
||
|
|
||
|
implementation(libs.test.runner)
|
||
|
implementation(libs.test.rules)
|
||
|
implementation(libs.test.junit)
|
||
|
}
|