blob: 16ba42f862f7d8517c238a540754379cb73a7f19 [file] [log] [blame]
Yein Jo9da60162023-03-04 06:38:50 +00001apply plugin: 'com.android.library'
2apply plugin: 'kotlin-android'
3
4// TODO: Pull out surfaceeffects outside of src and have separate build files there.
5android {
6 sourceSets {
7 main {
Uwais Ashrafe285b932023-12-27 16:51:31 +00008 java.srcDirs = ["${SYS_UI_DIR}/animation/src/com/android/systemui/surfaceeffects/"]
9 manifest.srcFile "${SYS_UI_DIR}/animation/AndroidManifest.xml"
Yein Jo9da60162023-03-04 06:38:50 +000010 }
11 }
12
Yein Jo9da60162023-03-04 06:38:50 +000013 lintOptions {
14 abortOnError false
15 }
16 tasks.lint.enabled = false
17 tasks.withType(JavaCompile) {
18 options.compilerArgs << "-Xlint:unchecked" << "-Xlint:deprecation"
19 }
Yein Jo9da60162023-03-04 06:38:50 +000020}
21
22dependencies {
23 implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.8.0"
24 implementation 'androidx.core:core-animation:1.0.0-alpha02'
25 implementation 'androidx.core:core-ktx:1.9.0'
26}