1234567891011121314151617181920 |
- apply from: "../../Script/config.gradle"
- apply from: "$scriptPath/frameworks_module.gradle"
- apply from: frameworkDependencies
- apply plugin: 'kotlin-android'
- android {
- namespace 'com.android.systemui.shared'
- buildFeatures {
- aidl(true)
- }
- kotlinOptions {
- jvmTarget = "1.8"
- }
- }
- dependencies {
- implementation project(":$rootDirName:SystemUI:PluginCoreLib")
- }
|