Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
24 views

Maybe I'm doing something wrong but this seems very strange to me took me a while to track down the cause but basically ViewModels are getting corrupted whenusing popBackStack or swipe left, vm's are ...
Neil Pepper's user avatar
0 votes
0 answers
45 views

I'm trying to implement Clerk authentication in my Android Kotlin Multiplatform project following the official Clerk Android Quickstart Guide, but the SDK artifact referenced in the documentation ...
Birou Rares's user avatar
0 votes
1 answer
117 views

Im trying to get the ksp plugin for arrow optics up and running in a KMP project. I stared by only including the ksp plugin in the Android build file: plugins { // ... alias(libs.plugins.ksp) }...
kefomo's user avatar
  • 69
0 votes
0 answers
69 views

My screen has an input field at the bottom. When opening the keyboard (Android, iOS), it pushes the input to the top so it stays above the keyboard. The baseline of the input is above the keyboard. ...
ixx's user avatar
  • 32.3k
0 votes
0 answers
78 views

I’ve been experimenting with debugging the iOS side of a Kotlin Multiplatform project directly in Android Studio. Overall, it works — I can set breakpoints in shared Kotlin code, step through logic, ...
Mohamed Salem's user avatar
3 votes
1 answer
110 views

Problem Description: I'm developing a Kotlin Multiplatform application with Compose for Desktop and want to implement an auto-updater. My architecture consists of two parts: The main application (...
Pantastix's user avatar
  • 428
2 votes
1 answer
209 views

Im trying to setup cocoapods in kmp project on android studio in separate cocoapods.gradle.kts file to be able to exclude it if platform is windows and run it if its mac. In my build.gradle.kts: if (...
Nikola Srdoč's user avatar
0 votes
1 answer
100 views

I have 2 language support in my app. Language files are arranged like below: composeApp/src/commonMain/composeResources/values/lang.xml composeApp/src/commonMain/composeResources/values-bn/lang.xml ...
Touhid's user avatar
  • 1,754
0 votes
0 answers
42 views

package goodeva.smartsafety.opa.kmp.presentation.feature.upload import platform.UIKit.* import platform.Foundation.* import platform.CoreGraphics.* import kotlinx.cinterop.* actual class ...
Muhammad Zaki Hanif's user avatar
1 vote
0 answers
137 views

I'm using the SwiftKlib Gradle Plugin in my Kotlin Multiplatform Mobile (KMM) project to call Swift code from Kotlin/Native. When i click sync i get errors like this: Failed to generate cinterop for :...
serlok17's user avatar
0 votes
0 answers
52 views

I'm using Voyager for bottom tab navigation in my Jetpack Compose app. I have four tabs: Home, Appointment, Prescription, and Profile, each defined using TabNavigator. Inside each tab, I want to ...
ZIBRAN KHAN's user avatar
4 votes
2 answers
683 views

I'm facing an issue when building the iOS app for KMP Undefined symbols for architecture arm64: "_kfun:androidx.lifecycle.viewmodel.compose#...
Rufan Khokhar's user avatar
0 votes
0 answers
64 views

I'm doing KMP project with AWS Cognito without libraries and I want to add Google sign in. I added Google in Federated identity provider sign-in and when I test it on webpage Cognito provides, it ...
tilen pintarić's user avatar
1 vote
1 answer
63 views

in my kmp project i want to implement a reminder in android and ios platform . interface ReminderScheduler { fun scheduleReminder(reminder: Reminder) fun cancelReminder(id: String) } expect ...
sepideh's user avatar
  • 49
0 votes
1 answer
94 views

Kotlin Multi platform - Decoding fails - with Double with more decimals { "Test": [0.1, 0.01, 0.001, 0.0001, 0.0001] } Note: The challenge is not in Kotlin alone. The change is with Kotlin ...
yarlg's user avatar
  • 3,661
0 votes
0 answers
83 views

The documentation on the Code Migration section states how to perform such migration but it doesn't say where do you put this code, or if there's something else to do to make it work.
Alex Luque's user avatar
1 vote
1 answer
192 views

I’m working on a multi-module Compose Multiplatform (CMP) project and created a new CMP library module using libs.plugins.multiplatform.library. However, when I added font resources and tried to use ...
Al-Taie's user avatar
  • 268
0 votes
0 answers
74 views

I'm starting a KMP project using native UI's (Compose and Swift UI) and want it to control the shared module version independently by platform. The project was created with the KMP Wizard. When some ...
cMobile's user avatar
  • 745
0 votes
0 answers
87 views

I'm pretty new to KMP and see often in sample code that there is an androidMain on the same level as commonMain and iOSMain. This is straight forward and I understand this. BUT there are also platform ...
Arc's user avatar
  • 1
2 votes
1 answer
145 views

Given a string of DNA characters (accepted characters: A, C, G, T) and a disease, with gene x (consider a pattern P to be found) also using the same alphabet. The task is to search the DNA strand ...
Luiz Fernando's user avatar
1 vote
2 answers
676 views

I have composed a multiplatform project with Android and iOS. The Android app runs and installs successfully, but when I run the iOS app from XCode build, it fails with the below error. 🛑 No ...
Murali M's user avatar
0 votes
0 answers
87 views

protected suspend fun uploadProfileImage(userId: String, imageUri: Uri): String { val fileRef = storage.reference.child("profile_images/$userId.jpg") fileRef.putFile(imageUri).await()...
IWNAZZ's user avatar
  • 9
0 votes
0 answers
101 views

I have started a new project with KMM(Kotlin multiplatform). I need to use the original IOS map (MKMapView) in my project. According to the instructions of this article integrating-mapkit-in-compose-...
morteza's user avatar
  • 33
0 votes
0 answers
436 views

I tried to implement the Google authentication with Firebase in Compose Multiplatform framework using Kotlin in mobile engineering, but I didn't find the way to build it for iOS. I composed the Google ...
Lucas Kim's user avatar
1 vote
0 answers
114 views

I have created a separate KMP project using KMP Wizard and I am using native UI for both platform(Android and iOS) in respective folders, Maintaining the business logics in shared Folder with clean ...
arun's user avatar
  • 245