blob: 9c1ac32b0951df38e2b868864a95933492f972f3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
plugins {
alias(libs.plugins.android.library)
alias(libs.plugins.kotlin.android)
alias(libs.plugins.compose)
}
android {
namespace = "net.mullvad.mullvadvpn.lib.theme"
compileSdk = Versions.compileSdkVersion
buildToolsVersion = Versions.buildToolsVersion
defaultConfig { minSdk = Versions.minSdkVersion }
buildFeatures { compose = true }
compileOptions {
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}
kotlinOptions {
jvmTarget = Versions.jvmTarget
allWarningsAsErrors = true
}
lint {
lintConfig = file("${rootProject.projectDir}/config/lint.xml")
abortOnError = true
warningsAsErrors = true
}
}
dependencies {
implementation(libs.compose.material3)
implementation(libs.compose.ui)
implementation(libs.kotlin.stdlib)
}
|