build.gradle 536 B

123456789101112131415161718192021222324
  1. apply from: "../../Script/config.gradle"
  2. ext {
  3. codePath = "$rootDir/$rootDirName/$windowManagerShell"
  4. }
  5. apply from: "$scriptPath/frameworks_module.gradle"
  6. apply from: frameworkDependencies
  7. apply from: aidlCompile
  8. android {
  9. namespace 'com.android.wm.shell'
  10. buildFeatures {
  11. aidl(true)
  12. }
  13. compileOptions {
  14. sourceCompatibility JavaVersion.VERSION_17
  15. targetCompatibility JavaVersion.VERSION_17
  16. }
  17. }
  18. dependencies {
  19. implementation "androidx.annotation:annotation:$ANDROID_X_VERSION_BASE"
  20. }