65 lines
2.2 KiB
Kotlin
65 lines
2.2 KiB
Kotlin
plugins {
|
|
id("com.android.application") version "8.4.0"
|
|
id("org.jetbrains.kotlin.android") version "1.9.22"
|
|
id("io.github.takahirom.roborazzi") version "1.20.0"
|
|
}
|
|
|
|
android {
|
|
namespace = "com.fnregistry.citas_kt"
|
|
compileSdk = 34
|
|
|
|
defaultConfig {
|
|
applicationId = "com.fnregistry.citas_kt"
|
|
minSdk = 24
|
|
targetSdk = 34
|
|
versionCode = 1
|
|
versionName = "0.1.0"
|
|
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
|
}
|
|
|
|
buildFeatures {
|
|
compose = true
|
|
}
|
|
composeOptions {
|
|
kotlinCompilerExtensionVersion = "1.5.8"
|
|
}
|
|
compileOptions {
|
|
sourceCompatibility = JavaVersion.VERSION_17
|
|
targetCompatibility = JavaVersion.VERSION_17
|
|
}
|
|
kotlinOptions {
|
|
jvmTarget = "17"
|
|
}
|
|
testOptions {
|
|
unitTests {
|
|
isIncludeAndroidResources = true
|
|
all {
|
|
it.systemProperty("robolectric.graphicsMode", "NATIVE")
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation("androidx.activity:activity-compose:1.8.2")
|
|
implementation(platform("androidx.compose:compose-bom:2024.02.00"))
|
|
implementation("androidx.compose.ui:ui")
|
|
implementation("androidx.compose.material3:material3")
|
|
implementation("androidx.compose.ui:ui-tooling-preview")
|
|
debugImplementation("androidx.compose.ui:ui-tooling")
|
|
// FnTheme + FnTokens via composite build
|
|
implementation("fn.compose:ui")
|
|
|
|
testImplementation("junit:junit:4.13.2")
|
|
testImplementation("org.robolectric:robolectric:4.11.1")
|
|
testImplementation("androidx.compose.ui:ui-test-junit4")
|
|
testImplementation("io.github.takahirom.roborazzi:roborazzi:1.20.0")
|
|
testImplementation("io.github.takahirom.roborazzi:roborazzi-compose:1.20.0")
|
|
testImplementation("io.github.takahirom.roborazzi:roborazzi-junit-rule:1.20.0")
|
|
androidTestImplementation(platform("androidx.compose:compose-bom:2024.02.00"))
|
|
androidTestImplementation("androidx.test.ext:junit:1.1.5")
|
|
androidTestImplementation("androidx.test.espresso:espresso-core:3.5.1")
|
|
androidTestImplementation("androidx.compose.ui:ui-test-junit4")
|
|
debugImplementation("androidx.compose.ui:ui-test-manifest")
|
|
}
|