Files
Lawnchair/systemUIAnim/build.gradle
T
renovate[bot] 0628ecf3f1 Update dependency androidx.core:core-animation to v1.0.0-rc01 (#3705)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-11-14 10:33:26 +08:00

30 lines
809 B
Groovy

plugins {
id 'com.android.library'
id 'org.jetbrains.kotlin.android'
}
android {
namespace "com.android.systemui.animation"
buildFeatures {
aidl true
}
sourceSets {
main {
java.srcDirs = ['src']
aidl.srcDirs = ['src']
manifest.srcFile 'AndroidManifest.xml'
res.srcDirs = ['res']
}
}
addFrameworkJar('android.jar')
}
dependencies {
compileOnly fileTree(dir: FRAMEWORK_PREBUILTS_DIR, include: 'WindowManager-Shell.jar')
compileOnly fileTree(dir: FRAMEWORK_PREBUILTS_DIR, include: 'core.jar')
compileOnly fileTree(dir: FRAMEWORK_PREBUILTS_DIR, include: 'seeder.jar')
implementation 'org.jetbrains.kotlin:kotlin-stdlib:1.4.32'
implementation "androidx.core:core-animation:1.0.0-rc01"
}