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

Commit af1b3969 authored by Marcelo Arteiro's avatar Marcelo Arteiro Committed by Android (Google) Code Review
Browse files

Merge "Update gradle files following Monet move to server" into main

parents 9f36fafa 210b0dbb
Loading
Loading
Loading
Loading

monet/build.gradle

0 → 100644
+21 −0
Original line number Diff line number Diff line
plugins {
    id 'com.android.library'
    id 'org.jetbrains.kotlin.android'
}
android {
    namespace = "com.android.systemui.monet"

    sourceSets {
        main {
            java.srcDirs = ['src']
            manifest.srcFile 'AndroidManifest.xml'
        }
    }
    dependencies {
        // Common implementations
        api(project(":MonetLib"))
    }
    tasks.withType(JavaCompile) {
        options.compilerArgs << "-Xlint:unchecked" << "-Xlint:deprecation"
    }
}
 No newline at end of file