diff --git a/shared/core/src/androidMain/kotlin/org/gdglille/devfest/Platform.kt b/shared/core/src/androidMain/kotlin/org/gdglille/devfest/Platform.kt index 1f073b42f..e0893b4dc 100644 --- a/shared/core/src/androidMain/kotlin/org/gdglille/devfest/Platform.kt +++ b/shared/core/src/androidMain/kotlin/org/gdglille/devfest/Platform.kt @@ -34,7 +34,7 @@ actual class Platform actual constructor(private val context: PlatformContext) { val resourceId = androidContext.resources.getIdentifier(key, "plurals", androidContext.packageName) if (resourceId == 0) return key - return androidContext.resources.getQuantityString(resourceId, count, args) + return androidContext.resources.getQuantityString(resourceId, count, *args.toTypedArray()) } actual fun getString(key: String, args: List): String {