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

Commit 210b0dbb authored by Marcelo Arteiro's avatar Marcelo Arteiro
Browse files

Update gradle files following Monet move to server

Bug: 335429258
Test: sysui studio build
Flag: NONE no applicable

Change-Id: I5ef2c09065bfbb1bda67a4ae98e832562e34e156
parent 4d2d4456
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