We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5b0bbe4 commit e6f5951Copy full SHA for e6f5951
gradle/libs.versions.toml
@@ -6,7 +6,7 @@ binary-compatibility = "0.14.0"
6
cameraX = "1.2.0"
7
compose-bom = "2025.03.01"
8
coroutines = "1.7.3"
9
-desugar = "1.1.8"
+desugar = "1.2.0"
10
futures = "1.1.0"
11
junit = "4.13.2"
12
kotest = "5.7.1"
liveness/build.gradle.kts
@@ -38,6 +38,10 @@ android {
38
androidResources {
39
noCompress += "tflite"
40
}
41
+
42
+ compileOptions {
43
+ isCoreLibraryDesugaringEnabled = true
44
+ }
45
46
47
dependencies {
@@ -57,5 +61,7 @@ dependencies {
57
61
implementation(libs.tensorflow)
58
62
implementation(libs.tensorflow.support)
59
63
64
+ coreLibraryDesugaring(libs.android.desugar)
65
60
66
testImplementation(projects.testing)
67
0 commit comments