mirror of
https://github.com/RikkaApps/Shizuku.git
synced 2025-08-06 18:25:43 +08:00
23 lines
522 B
Groovy
23 lines
522 B
Groovy
plugins {
|
|
id 'com.android.library'
|
|
id 'dev.rikka.tools.refine'
|
|
}
|
|
|
|
android {
|
|
namespace 'rikka.shizuku.starter'
|
|
buildFeatures {
|
|
buildConfig = false
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation project(':common')
|
|
implementation project(':shared')
|
|
implementation project(':server-shared')
|
|
compileOnly project(':provider')
|
|
implementation 'androidx.annotation:annotation:1.3.0'
|
|
implementation libs.hidden.compat
|
|
compileOnly libs.hidden.stub
|
|
implementation libs.refine.runtime
|
|
}
|