build.gradle 451 B

123456789101112131415161718192021
  1. import java.nio.file.Paths
  2. apply from: "../../Script/config.gradle"
  3. ext {
  4. codePath = Paths.get("$rootDir", "$rootDirName", "$windowManagerShell")
  5. }
  6. apply from: "$scriptPath/frameworks_module.gradle"
  7. apply from: frameworkDependencies
  8. apply from: aidlCompile
  9. android {
  10. namespace 'com.android.wm.shell'
  11. buildFeatures {
  12. aidl(true)
  13. }
  14. }
  15. dependencies {
  16. implementation "androidx.annotation:annotation:$ANDROID_X_VERSION_BASE"
  17. }