build.gradle 537 B

123456789101112131415161718192021
  1. apply from: "../../Script/config.gradle"
  2. ext {
  3. codePath = "$rootDir/$rootDirName/$systemUiPath/log"
  4. }
  5. apply from: "$scriptPath/frameworks_module.gradle"
  6. apply from: frameworkDependencies
  7. apply plugin: 'kotlin-android'
  8. android {
  9. namespace 'com.android.systemui.log'
  10. kotlinOptions {
  11. jvmTarget = "1.8"
  12. freeCompilerArgs = ['-Xjvm-default=all']
  13. }
  14. }
  15. dependencies {
  16. implementation 'com.google.errorprone:error_prone_annotations:2.26.1'
  17. implementation project(":$rootDirName:SystemUI:SystemUICommon")
  18. }