Files
lawnchair/wmshell/build.gradle
renovate[bot] a77f5f54fc fix(deps): update dependency androidx.dynamicanimation:dynamicanimation to v1.1.0 (#5411)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-04-10 17:46:24 +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.1.0'
}