Skip to content

Commit

Permalink
#91 yolo모델 제거하고, tflite모델과 관련 라이브러리 의존성 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
pknujsp committed Jun 4, 2023
1 parent 14dfeb3 commit 2aa2391
Show file tree
Hide file tree
Showing 596 changed files with 31 additions and 222,219 deletions.
31 changes: 19 additions & 12 deletions feature/camera/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,28 +4,34 @@ plugins {

}



android {
namespace = "com.android.mediproject.feature.camera"

buildFeatures {
buildConfig = true
}
/*
externalNativeBuild {
cmake {
version = "3.22.1"
path = file("src/main/jni/CMakeLists.txt")
externalNativeBuild {
cmake {
version = "3.22.1"
path = file("src/main/jni/CMakeLists.txt")
}
}
}
defaultConfig {
defaultConfig {
ndk {
version = "25.2.9519653"
abiFilters += listOf(
"armeabi-v7a", "arm64-v8a"
)
ndk {
version = "25.2.9519653"
abiFilters += listOf(
"armeabi-v7a", "arm64-v8a"
)
}
}
}
*/

}

Expand All @@ -52,4 +58,5 @@ dependencies {
implementation(libs.kotlinx.datetime)
implementation(libs.photo.view)

implementation(libs.bundles.tflite)
}
Binary file not shown.
13 changes: 0 additions & 13 deletions feature/camera/src/main/jni/CMakeLists.txt

This file was deleted.

Loading

0 comments on commit 2aa2391

Please sign in to comment.