Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 5c464f21 authored by Automerger Merge Worker's avatar Automerger Merge Worker Committed by Android (Google) Code Review
Browse files

Merge "Merge "Add ShaderLib gradle build" into udc-dev am: e6529a5d am: d406fb24"

parents 9f70e3d8 e1be6380
Loading
Loading
Loading
Loading
+9 −0
Original line number Diff line number Diff line
.idea/
.gradle/
gradle/
build/
gradlew*
local.properties
*.iml
android.properties
buildSrc
 No newline at end of file
+37 −0
Original line number Diff line number Diff line
apply plugin: 'com.android.library'
apply plugin: 'kotlin-android'

// TODO: Pull out surfaceeffects outside of src and have separate build files there.
android {
    sourceSets {
        main {
            java.srcDirs = ["${SYS_UI_DIR}/animation/src/com/android/systemui/surfaceeffects/"]
            manifest.srcFile "${SYS_UI_DIR}/animation/AndroidManifest.xml"
        }
    }

    compileSdk 33

    defaultConfig {
        minSdk 33
        targetSdk 33
    }

    lintOptions {
        abortOnError false
    }
    tasks.lint.enabled = false
    tasks.withType(JavaCompile) {
        options.compilerArgs << "-Xlint:unchecked" << "-Xlint:deprecation"
    }
    kotlinOptions {
        jvmTarget = '1.8'
        freeCompilerArgs = ["-Xjvm-default=all"]
    }
}

dependencies {
    implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.8.0"
    implementation 'androidx.core:core-animation:1.0.0-alpha02'
    implementation 'androidx.core:core-ktx:1.9.0'
}