1plugins {
2    id 'com.android.library'
3    id 'org.jetbrains.kotlin.android'
4}
5android {
6    namespace = "com.android.systemui.monet"
7
8    sourceSets {
9        main {
10            java.srcDirs = ['src']
11            manifest.srcFile 'AndroidManifest.xml'
12        }
13    }
14    dependencies {
15        // Common implementations
16        api(project(":MonetLib"))
17    }
18    tasks.withType(JavaCompile) {
19        options.compilerArgs << "-Xlint:unchecked" << "-Xlint:deprecation"
20    }
21}