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

I am trying to create a path animation of Svg in the desktop compose app. fun SvgDocument.drawCompletedFills(buildPaths: List<BuildPath>, drawScope: DrawScope, canvas: Canvas, targetLength: ...
Vivek Gupta's user avatar
-3 votes
0 answers
64 views

During the development of the KMP + Compose application, I encountered an iOS-only UI issue. Video description of the rendering issue The problem looks like, when using the application in some random ...
Ice's user avatar
  • 781
Best practices
0 votes
0 replies
34 views

How to include Java in this project and enable mixed development with both Java and Kotlin. I want to know how to use Java and Kotlin interoperably in a Kotlin Multiplatform Compose Desktop project, ...
Sidnio's user avatar
  • 302
1 vote
0 answers
60 views

PROBLEM Hi, I have IntelliJ Ultimate 2025.2.4, and Android Studio 2025.2.1. When I create a new default project in either one > download all the sources it needs > sync gradle > then click ...
Action Jackson's user avatar
1 vote
0 answers
71 views

I am integrating Google Maps SDK for iOS into my Kotlin Multiplatform (KMP) project. Earlier I was using CocoaPods and everything was working. Now I migrated to Swift Package Manager (SPM) and removed ...
Pawandeep Singh's user avatar
0 votes
1 answer
63 views

I built a cross-platform project using Kotlin Multiplatform targeting Android, Windows, and macOS. Now, I need to implement a media player that must support HLS. Because of this, I ruled out the ...
deacon-qin's user avatar
2 votes
0 answers
38 views

After using VNDocumentCameraViewController in Compose Multiplatform iOS, all popup-based components (AlertDialog, DatePickerDialog, ExposedDropdownMenuBox) stop working. Open AlertDialog - works fine ...
Laya's user avatar
  • 21
1 vote
0 answers
42 views

I'm trying to set up Dagger in a Kotlin Multiplatform module for Android only as a POC for a migration of a project. Therefore, I needed to set up kapt and followed the instructions in Kmp in Kapt ...
Noge Dev's user avatar
0 votes
0 answers
34 views

TLDR: can we expose interfaces from commonMain to JS that can be implemented in Typescript? Exposing from jsMain appears to work fine: If I expose interface from jsMain with external and @JsExport @...
user7858768's user avatar
  • 1,086
0 votes
1 answer
96 views

I’m using Jetpack DataStore (Preferences) in a Kotlin Multiplatform Mobile (KMM/KMP) project to store some user data, including a JSON-serialized object: class DataStoreVM( private val dataStore: ...
Pawandeep Singh's user avatar
1 vote
0 answers
69 views

I've been reworking an android app to make it a compatible with the the kotlin multiplatform framework. After getting stuck I decided to start with a fresh, very basic setup and build out from there. ...
Wesley Cramer's user avatar
0 votes
1 answer
167 views

Kotlin Multiplatform for IntelliJ Idea (Community) Linux and Windows released. Version: 0.9-252.26199-IJ_CE-176. I have installed the plugin and restart the ide it says Plugins 'Kotlin Multiplatform', ...
Surendra's user avatar
5 votes
3 answers
332 views

Material3 rememberDatePickerState() crashing in desktop and iOS platforms. I am using kotlin = "2.2.10" version for my Kotlin Compose Multiplatform (KMP/CMP) project. It runs fine on android ...
Touhid's user avatar
  • 1,754
5 votes
1 answer
203 views

BACKGROUND Hi, I'm new to Kotlin, Kotlin Multi Platform, and Jetpack Compose, but not a noob to programming. I found a use for a KMP project, and have been working on making a NavGraph and a ...
Action Jackson's user avatar
2 votes
1 answer
184 views

How can I embed After Effects animations exported with Bodymovin extension as Lottie JSON format in a Compose Multiplatform app (Desktop/Windows/Linux/macOS, Android, iOS, Web/JS/WASM)? Is there a ...
Mahozad's user avatar
  • 26.3k
3 votes
1 answer
165 views

The following code gives me output I did not expect. @Composable fun App() { MaterialTheme { Box( modifier = Modifier .fillMaxSize() .background(...
sanitizedUser's user avatar
0 votes
0 answers
51 views

I am trying to create a multimodule KMP project. I have created a module name theme. Inside that I want to define my color, typography and all theme releted code. Now I have created a directory named ...
Sumita Das's user avatar
0 votes
0 answers
70 views

I've got a compose multiplatform(desktop mainly) project with some UI packed to *.jar resources config for the feature project compose.resources { packageOfResClass = "com.sample.feature"...
Alex Shapkin's user avatar
2 votes
1 answer
77 views

I'm trying to get short audio samples into my iOS app (in Kotlin Multiplatform). Here's my relatively simple setup (sampleRateInHz is defined elsewhere): val bufferSize: AVAudioFrameCount = 512u val ...
Ryan's user avatar
  • 23
1 vote
1 answer
595 views

Full reproducible example here I'm working on a Jetpack Compose Multiplatform project. In my module ui-system, I have a drawable located at: ui-system/src/commonMain/composeResources/drawable/compose-...
Yannick's user avatar
  • 6,189
1 vote
1 answer
64 views

There are two functions to be used as the entry point for a CMP desktop application: fun usage application() fun main() = application { ... } awaitApplication() suspend fun main() = awaitApplication { ...
Mahozad's user avatar
  • 26.3k
0 votes
0 answers
41 views

I am developing an application using Kotlin and Compose Multiplatform. The Android and iOS versions work correctly, but the web application displays a blank screen. Here is the content of Main.kt ...
Joe Rakhimov's user avatar
  • 5,143
0 votes
0 answers
71 views

I am using Mockery lib for mocking in my Kotlin Multiplatform project. Even though I am using a mock instance; I am getting the error: Each 'every' block requires single mock call! dev.mokkery....
Shreyash.K's user avatar
  • 1,238
1 vote
0 answers
65 views

I have some code that needs to be completed in C++, and I hope to compile the C++ code into some form of dynamic library or klib, which can then be used in the Kotlin multiplatform project or as a ...
masterQian's user avatar
0 votes
2 answers
101 views

I want to check if there is an update on App Store for the app. To do so, I need to get the last version of the app in App Store. For android (it's working fine): actual class AppUpdateManager(private ...
Zinfine's user avatar
  • 31

1
2 3 4 5
45