123456789101112131415161718192021 |
- import java.nio.file.Paths
- apply from: "../../Script/config.gradle"
- ext {
- codePath = Paths.get("$rootDir", "$rootDirName", "$windowManagerShell")
- }
- apply from: "$scriptPath/frameworks_module.gradle"
- apply from: frameworkDependencies
- apply from: aidlCompile
- android {
- namespace 'com.android.wm.shell'
- buildFeatures {
- aidl(true)
- }
- }
- dependencies {
- implementation "androidx.annotation:annotation:$ANDROID_X_VERSION_BASE"
- }
|