summaryrefslogtreecommitdiff
path: root/build-plugin/src/main/kotlin/thunderbird.library.android.compose.gradle.kts
blob: 7003812a76431c5397ad160e85d3c6967f2a66bc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
plugins {
    id("thunderbird.library.android")
}

android {
    configureSharedComposeConfig(libs)
}

androidComponents {
    beforeVariants(selector().withBuildType("release")) { variantBuilder ->
        variantBuilder.enableUnitTest = false
        variantBuilder.enableAndroidTest = false
    }
}

dependencies {
    configureSharedComposeDependencies(libs)
}