Extract module imageprocessing (#76)

This commit is contained in:
pynicolas
2025-12-06 08:08:20 +01:00
committed by GitHub
parent 8ac844d8fd
commit 3d9d5565f1
22 changed files with 91 additions and 45 deletions

View File

@@ -88,8 +88,10 @@ android {
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
}
kotlinOptions {
jvmTarget = "11"
kotlin {
compilerOptions {
jvmTarget.set(org.jetbrains.kotlin.gradle.dsl.JvmTarget.JVM_11)
}
}
buildFeatures {
compose = true
@@ -101,6 +103,10 @@ apply(from = "download-tflite.gradle.kts")
dependencies {
implementation(project(":imageprocessing")) {
exclude(group = "org.openpnp", module = "opencv")
}
implementation(libs.androidx.core.ktx)
implementation(libs.androidx.lifecycle.runtime.ktx)
implementation(libs.androidx.lifecycle.runtime.compose)