Skip to content

Commit d49e7e7

Browse files
authored
fix: firebase upload failure in KMP demo app workflow (openMF#3112)
1 parent 0d70344 commit d49e7e7

File tree

31 files changed

+1214
-555
lines changed

31 files changed

+1214
-555
lines changed

build-logic/convention/src/main/kotlin/org/mifos/mobile/KotlinAndroid.kt

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -68,10 +68,9 @@ private fun Project.configureKotlin() {
6868
// Override by setting warningsAsErrors=true in your ~/.gradle/gradle.properties
6969
val warningsAsErrors: String? by project
7070
allWarningsAsErrors = warningsAsErrors.toBoolean()
71-
freeCompilerArgs.add(
72-
// Enable experimental coroutines APIs, including Flow
73-
"-opt-in=kotlinx.coroutines.ExperimentalCoroutinesApi",
74-
)
71+
freeCompilerArgs.add("-opt-in=kotlinx.coroutines.ExperimentalCoroutinesApi")
72+
freeCompilerArgs.add("-opt-in=kotlin.RequiresOptIn")
73+
freeCompilerArgs.add("-opt-in=kotlin.time.ExperimentalTime")
7574
}
7675
}
7776
}

core-base/analytics/src/commonMain/kotlin/template/core/base/analytics/AnalyticsExtensions.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
*/
1010
package template.core.base.analytics
1111

12-
import kotlinx.datetime.Clock
12+
import kotlin.time.Clock
1313
import kotlin.time.Duration
1414
import kotlin.time.DurationUnit
1515

core-base/analytics/src/commonMain/kotlin/template/core/base/analytics/PerformanceTracker.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
*/
1010
package template.core.base.analytics
1111

12-
import kotlinx.datetime.Clock
12+
import kotlin.time.Clock
1313

1414
/** Performance tracking utilities for analytics */
1515

0 commit comments

Comments
 (0)