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

Commit b2bb9394 authored by Abhishek Aggarwal's avatar Abhishek Aggarwal Committed by Saalim Quadri
Browse files

bl3: make it buildable



[Saalim]: Adapt to a15

Signed-off-by: default avatarSaalim Quadri <danascape@gmail.com>
parent b443d0e7
Loading
Loading
Loading
Loading
+2 −17
Original line number Diff line number Diff line
@@ -3,10 +3,6 @@ apply plugin: 'kotlin-android'

android {
    namespace = "com.android.app.animation"
    testNamespace = "com.android.app.animation.tests"
    defaultConfig {
        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
    }

    sourceSets {
        main {
@@ -19,25 +15,14 @@ android {
            manifest.srcFile 'tests/AndroidManifest.xml'
        }
    }

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

addFrameworkJar('framework-15.jar')

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"
    androidTestImplementation libs.robolectric
    androidTestImplementation "androidx.test.ext:junit:1.1.3"
    androidTestImplementation "androidx.test:rules:1.4.0"
}
+4 −3
Original line number Diff line number Diff line
plugins {
    id(libs.plugins.android.library.get().pluginId)
    id(libs.plugins.kotlin.android.get().pluginId)
    id("com.android.library")
    id("org.jetbrains.kotlin.android")
}

android {
@@ -12,9 +12,10 @@ android {
            res.setSrcDirs(listOf("res"))
        }
    }
    addFrameworkJar('framework-15.jar')
}

dependencies {
    implementation("androidx.core:core")
    api(project(":NexusLauncher.Flags"))
//    api(project(":NexusLauncher.Flags"))
}