12345678910111213141516171819202122232425 |
- 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 "androidx.core:core:1.2.0"
- implementation "androidx.lifecycle:lifecycle-common:2.4.0"
- implementation "androidx.concurrent:concurrent-futures:1.0.0"
- implementation "androidx.dynamicanimation:dynamicanimation:1.0.0"
- implementation project(":$rootDirName:SystemUI:PluginCoreLib")
- implementation project(":$rootDirName:WindowManager:Shell")
- }
|