Skip to main content
Filter by
Sorted by
Tagged with
2 votes
1 answer
73 views

I'm working on a Compose Multiplatform project (CMP) with multiple feature modules. Each feature module contains a composeResources folder with drawable and values (strings,...) inside. The issue is ...
melikaafrakhteh's user avatar
0 votes
0 answers
47 views

I am building a Kotlin Multiplatform app where I want to use shared UI with Compose for both Android and iOS. However, I need some native views with their own state for certain parts of the app, so I’...
AlexelNintendero's user avatar
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
120 views

I'm building a Compose Multiplatform (CMP) app using Jetpack Compose for iOS and trying to capture a screenshot of a composable UI. The screenshot works, but the colors are wrong, In the Ui the Error ...
melikaafrakhteh's user avatar
2 votes
0 answers
84 views

I tested the following code in IOS, and it seems weird for me in Simulator. @Composable fun FakeScreen() { LaunchedEffect(Unit) { launch { var count = 0 while(true)...
Irsath Kareem's user avatar
0 votes
1 answer
106 views

I'm trying to create a Compose multi-platform library for shared UI components between iOS, Android, and Desktop. Unfortunately I'm not able to find any source or tutorial to help me to create one. ...
Neeraj Kumar's user avatar
3 votes
0 answers
182 views

I'm working on a Compose Multiplatform app and I'm trying to integrate Google MLKit Barcode Scanner on the iOS side using CocoaPods. However, when building the project, I get this error: Failed to ...
uniqueapps's user avatar
0 votes
1 answer
183 views

I'm unable to render a Compose Multiplatform view inside a SwiftUI Form. However, it works outside of the Form. SwiftUI view: struct ContentView: View { var body: some View { Form { ...
Oskar Persson's user avatar
1 vote
2 answers
693 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
1 answer
206 views

I'm trying to use Compose Multiplatform UI in an iOS Share Extension, but the Compose content only shows a blank white screen. Here's what I've observed: The UIViewController is sized correctly (the ...
Serhii Petrenko's user avatar
0 votes
0 answers
125 views

I've added strings to composeResources folder and I can easily access them in Android using Res.string.my_string_name What I can't seem to find in documentation is if it's possible to directly access ...
SMGhost's user avatar
  • 4,067
1 vote
0 answers
232 views

I'm trying to use CupertinoTimeDatePicker on a compose multiplatform project. Whenever I do that, I always get this error: java.lang.NoSuchMethodError: No static method rememberSnapFlingBehavior(...
Ashaluwala Kazeem's user avatar
0 votes
1 answer
138 views

I'm trying to add the pod SwiftGRPCClient to my KMP project, but I keep hitting this error: unsupported option '-G' for target 'arm64-apple-ios11.0' (in target 'BoringSSL-GRPC' from project 'Pods') ...
benchuk's user avatar
  • 689
8 votes
1 answer
799 views

I’m working on a Compose Multiplatform project, and I’m looking to implement smooth native iOS navigation specifically for the iOS part of the app, with support for swipe-back gestures (like the ...
rlaj's user avatar
  • 394
3 votes
0 answers
157 views

I'm building a Jetpack Compose Multiplatform app, and I need to open Google Maps from the app when a user clicks a button. This functionality should work on both Android and iOS. For Android, I'm ...
rlaj's user avatar
  • 394
3 votes
0 answers
253 views

Currently, I working in the Compose Multiplatform and want to add "Kotlin Multiplatform Shared Module". The name of module is ":feature:learning", I already add dependency to ...
fahrizal89's user avatar
0 votes
1 answer
217 views

I'm working on a Kotlin Multiplatform project where I'm trying to implement custom fonts for both Android and iOS. The custom fonts work correctly in the Android app but do not appear in the iOS app. ...
Bedirhan Dağ's user avatar
2 votes
1 answer
914 views

I'm using KMM library in my project. I want to access local json files in both iOS and Android from shared resources. I don't want to use files from iOS App. I have written following code in shared/...
Priyanka Kadam's user avatar
2 votes
1 answer
1k views

After migration Kmp project from Kotlin 1.9.24 to 2.0.0 and updating ksp from 1.9.24-1.0.20 to 2.0.0-1.0.24, Android build works but iOS doesn't compile because it can't find generated Koin modules... ...
doolle89's user avatar
  • 339
0 votes
1 answer
491 views

As we all know that now we can develop iOS applications in Kotlin Multiplatform (KMP) with shared UI or using Compose Multiplatform (CMP). Now CMP is currently in Beta so can we publish compose ...
Atul Sharma's user avatar
  • 1,167
1 vote
1 answer
869 views

I'm working on a Compose Multiplatform project, and I need to adjust the UI based on whether the user is using a tablet, iPad, or phone. I'm looking for a detailed solution that includes platform-...
Murodjon Abdukholikov's user avatar
0 votes
1 answer
142 views

I have integrated the Camera Scanner from AVFoundation into a Compose Multiplatform project. The scanner scans a few times (randomly 5-6 times) before ceasing to scan further, although the live ...
Murodjon Abdukholikov's user avatar
2 votes
0 answers
156 views

Getting following error: warning: Could not find or use auto-linked framework 'Reachability': framework 'Reachability' not found Undefined symbols for architecture arm64: "_OBJC_CLASS_$...
Reprator's user avatar
  • 3,109
2 votes
1 answer
648 views

I implemented the lifecycle detector for iOS in the Compose Multiplatform Project using the below code. val lifecycleDelegate: ComposeUIViewControllerDelegate = object : ...
Murodjon Abdukholikov's user avatar
1 vote
1 answer
1k views

I'm working on a KMP project targeting android, ios and desktop and I'm using koin as DI, all works fine in Android and desktop(windows and macOS) but the build for iOS fails. some of my dependencies ...
DrAP's user avatar
  • 11
8 votes
5 answers
7k views

I want to change the status bar color. I have tried some code in App.kt file MaterialTheme{ } But it's not affect on statusbar color. I want to change the status bar color like the background of then ...
Niloy Sarker's user avatar
4 votes
0 answers
2k views

I'm working on a Kotlin Multiplatform Mobile (KMM) application and am trying to implement unified camera functionality that allows users to take photos and save them to the device's filesystem, both ...
Fourty-Three's user avatar