Make gradle download the TFLite segmentation model (#8)

This commit is contained in:
pynicolas
2025-06-21 13:01:05 +02:00
committed by GitHub
parent 7056393f56
commit 0ea4132d37
3 changed files with 42 additions and 1 deletions

View File

@@ -7,6 +7,7 @@ plugins {
android {
namespace = "org.mydomain.myscan"
compileSdk = 35
sourceSets["main"].assets.srcDir(layout.buildDirectory.dir("generated/assets"))
defaultConfig {
applicationId = "org.mydomain.myscan"
@@ -43,6 +44,8 @@ android {
}
}
apply(from = "download-tflite.gradle.kts")
dependencies {
implementation(libs.androidx.core.ktx)