mirror of
https://github.com/msfjarvis/compose-lobsters
synced 2025-08-14 22:17:03 +05:30
paparazzi-tests: init
This commit is contained in:
parent
356da53afb
commit
088d8606a6
4 changed files with 36 additions and 0 deletions
26
paparazzi-tests/build.gradle.kts
Normal file
26
paparazzi-tests/build.gradle.kts
Normal file
|
@ -0,0 +1,26 @@
|
|||
@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(projects.android)
|
||||
testImplementation(projects.common)
|
||||
testImplementation(projects.model)
|
||||
testImplementation(projects.database)
|
||||
}
|
||||
|
||||
tasks.withType<Test>().configureEach {
|
||||
javaLauncher.set(javaToolchains.launcherFor { languageVersion.set(JavaLanguageVersion.of(11)) })
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue