mirror of
https://github.com/msfjarvis/compose-lobsters
synced 2025-08-14 19:57:04 +05:30
24 lines
645 B
Kotlin
24 lines
645 B
Kotlin
@file:Suppress("DSL_SCOPE_VIOLATION")
|
|
|
|
plugins {
|
|
id("dev.msfjarvis.claw.android-library")
|
|
id("dev.msfjarvis.claw.kotlin-android")
|
|
alias(libs.plugins.paparazzi)
|
|
}
|
|
|
|
androidComponents { beforeVariants(selector().all()) { it.enable = it.buildType == "debug" } }
|
|
|
|
android {
|
|
namespace = "dev.msfjarvis.claw.android.tests"
|
|
buildFeatures { compose = true }
|
|
}
|
|
|
|
dependencies {
|
|
testImplementation(kotlin("test-junit"))
|
|
testImplementation(libs.kotlinx.datetime)
|
|
testImplementation(projects.common)
|
|
}
|
|
|
|
tasks.withType<Test>().configureEach {
|
|
javaLauncher.set(javaToolchains.launcherFor { languageVersion.set(JavaLanguageVersion.of(11)) })
|
|
}
|