build.gradle 397 B

1234567891011121314151617181920
  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 project(":$rootDirName:SystemUI:PluginCoreLib")
  16. }