build.gradle 349 B

123456789101112131415
  1. apply from: "../../Script/config.gradle"
  2. ext {
  3. codePath = "$rootDir/$rootDirName/$systemUiPath/common"
  4. }
  5. apply from: "$scriptPath/frameworks_module.gradle"
  6. apply plugin: 'kotlin-android'
  7. android {
  8. namespace 'com.android.systemui.common'
  9. kotlinOptions {
  10. jvmTarget = "1.8"
  11. freeCompilerArgs = ['-Xjvm-default=all']
  12. }
  13. }