2024-11-02 10:45:09 +08:00
|
|
|
plugins {
|
2025-10-19 17:08:54 +07:00
|
|
|
alias(libs.plugins.android.library)
|
|
|
|
|
alias(libs.plugins.kotlin.android)
|
|
|
|
|
alias(libs.plugins.google.ksp)
|
2024-11-02 10:45:09 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
android {
|
|
|
|
|
namespace "com.android.wm.shell"
|
|
|
|
|
buildFeatures {
|
|
|
|
|
aidl true
|
|
|
|
|
}
|
|
|
|
|
sourceSets {
|
|
|
|
|
main {
|
|
|
|
|
java.srcDirs = ['shared/src']
|
2024-12-11 12:27:09 +08:00
|
|
|
aidl.srcDirs = ['shared/src']
|
2024-11-02 10:45:09 +08:00
|
|
|
manifest.srcFile 'AndroidManifest.xml'
|
|
|
|
|
res.srcDirs = ['shared']
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
addFrameworkJar('framework-15.jar')
|
|
|
|
|
compileOnlyCommonJars()
|
|
|
|
|
|
|
|
|
|
dependencies {
|
2025-10-19 17:08:54 +07:00
|
|
|
implementation libs.hilt.android
|
|
|
|
|
ksp libs.hilt.compiler
|
|
|
|
|
implementation libs.androidx.core.animation
|
|
|
|
|
implementation libs.androidx.dynamicanimation
|
2024-11-02 10:45:09 +08:00
|
|
|
}
|