2024-11-02 10:45:09 +08:00
|
|
|
plugins {
|
2025-10-25 16:42:54 +07:00
|
|
|
alias(libs.plugins.android.library)
|
2024-11-02 10:45:09 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
android {
|
2025-11-28 20:00:03 +07:00
|
|
|
buildToolsVersion "36.1.0"
|
2024-11-02 10:45:09 +08:00
|
|
|
namespace "com.android.systemui.plugin_core"
|
|
|
|
|
buildFeatures {
|
|
|
|
|
aidl true
|
|
|
|
|
}
|
|
|
|
|
sourceSets {
|
|
|
|
|
main {
|
|
|
|
|
java.srcDirs = ['src']
|
2026-01-17 20:04:14 +07:00
|
|
|
kotlin.srcDirs = ['src']
|
2024-11-02 10:45:09 +08:00
|
|
|
aidl.srcDirs = ['src']
|
|
|
|
|
manifest.srcFile 'AndroidManifest.xml'
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2025-11-28 20:00:03 +07:00
|
|
|
addFrameworkJar('framework-16.jar')
|
2024-11-02 10:45:09 +08:00
|
|
|
compileOnlyCommonJars()
|
2025-11-28 20:00:03 +07:00
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
|
compileOnly projects.log
|
|
|
|
|
}
|