Files
lawnchair/wmshell/build.gradle
MrSluffy 1a9982ad65 fixed issue applying lawnchair as recents provider in A15
- fixed animation app to home
- action buttons in recents
2024-12-11 12:27:09 +08:00

31 lines
755 B
Groovy

plugins {
id 'com.android.library'
id 'org.jetbrains.kotlin.android'
id 'com.google.devtools.ksp'
}
android {
namespace "com.android.wm.shell"
buildFeatures {
aidl true
}
sourceSets {
main {
java.srcDirs = ['shared/src']
aidl.srcDirs = ['shared/src']
manifest.srcFile 'AndroidManifest.xml'
res.srcDirs = ['shared']
}
}
}
addFrameworkJar('framework-15.jar')
compileOnlyCommonJars()
dependencies {
implementation "com.google.dagger:hilt-android:$daggerVersion"
ksp "com.google.dagger:hilt-compiler:$daggerVersion"
implementation 'androidx.core:core-animation:1.0.0'
implementation 'androidx.dynamicanimation:dynamicanimation:1.0.0'
}