build.gradle 706 B

12345678910111213141516171819202122232425
  1. apply from: "../../Script/config.gradle"
  2. apply from: "$scriptPath/frameworks_module.gradle"
  3. apply from: frameworkDependencies
  4. apply plugin: 'kotlin-android'
  5. android {
  6. namespace 'com.android.systemui.shared'
  7. buildFeatures {
  8. aidl(true)
  9. }
  10. kotlinOptions {
  11. jvmTarget = "1.8"
  12. }
  13. }
  14. dependencies {
  15. implementation "androidx.core:core:1.2.0"
  16. implementation "androidx.lifecycle:lifecycle-common:2.4.0"
  17. implementation "androidx.concurrent:concurrent-futures:1.0.0"
  18. implementation "androidx.dynamicanimation:dynamicanimation:1.0.0"
  19. implementation project(":$rootDirName:SystemUI:PluginCoreLib")
  20. implementation project(":$rootDirName:WindowManager:Shell")
  21. }