123456789101112131415161718192021222324 |
- apply from: "../../Script/config.gradle"
- ext {
- codePath = "$rootDir/$rootDirName/$windowManagerShell"
- }
- apply from: "$scriptPath/frameworks_module.gradle"
- apply from: frameworkDependencies
- apply from: aidlCompile
- android {
- namespace 'com.android.wm.shell'
- buildFeatures {
- aidl(true)
- }
- compileOptions {
- sourceCompatibility JavaVersion.VERSION_17
- targetCompatibility JavaVersion.VERSION_17
- }
- }
- dependencies {
- implementation "androidx.annotation:annotation:$ANDROID_X_VERSION_BASE"
- }
|