LurkyVAR
05/23/2025, 1:31 PMOlivier Patry
05/23/2025, 4:39 PMonNodeWithText("Tools").assertIsDisplayed()
This fails ("Tools" being one of the MenuBar's root Menu).
I'm running on macOS if that matters (given how the macOS menu are managed vs app Window, it could)
(See code in thread 🧵)ron
05/25/2025, 8:46 AMval removed = _bloodPressureRecords.removeIf { it.id == id }
should work, but accroding to intellij, removeIf does not exist kotlin = "2.1.21", kotlinx-coroutines = "1.10.2", ktor = "3.1.3"Pablo
05/25/2025, 6:26 PMPlugin 'Compose Multiplatform for Desktop IDE Support' is not compatible with the IDE because the IDE contains module 'com.jetbrains.kmm' which conflicts with the plugin
any idea why this happenned and how can this be solved without breaking compose desktop capabilites on Android Studio?Pablo
05/27/2025, 6:21 AMlouiscad
05/29/2025, 2:57 PMdleuck
05/30/2025, 7:52 AMdleuck
05/30/2025, 1:13 PMrkechols
05/31/2025, 1:42 AMTargetFormat.PKG
) and notarize it. If I were to convert the legacy app as needed to use this build system, would the resulting PKG be correctly set up to work on both x86_64 and arm64 like Transporter wants?Jens van de Wiel
05/31/2025, 3:40 PMPablo
06/02/2025, 9:57 AMMichael Paus
06/02/2025, 4:23 PMgeepawhill
06/03/2025, 3:26 PMYassine Abou
06/06/2025, 4:52 AMCould not create instance of:
This seems tied to SQLDelight worker configuration
single {
val driver = JdbcSqliteDriver(JdbcSqliteDriver.IN_MEMORY)
.also { LlmsDatabase.Schema.create(it) }
.apply { enableForeignKeys() }
LlmsDatabaseWrapper(driver, LlmsDatabase(driver))
}
This worked fine in debug builds but failed in release.
What I Tried
Following guidance from this Koin issue , I modified the code to use a persistent database with a cache directory:
val appCacheDirectory = appCacheDirectory(appId = "org.yassineabou.llms", createDir = true)
val driver = JdbcSqliteDriver(url = "jdbc:sqlite:$appCacheDirectory/LlmsDatabase.db", schema = LlmsDatabase.Schema).apply {
enableForeignKeys()
}
LlmsDatabaseWrapper(driver, LlmsDatabase(driver))
However, the error persists in release builds. For more information check out my repository: https://github.com/yassineAbou/LLMSThomas
06/06/2025, 7:43 PMCould not find org.jetbrains.androidx.window:window-core-desktop:1.4.0-alpha07
Tingshu Fan
06/07/2025, 1:52 AMZoff
06/07/2025, 9:12 AMBig Chungus
06/07/2025, 3:29 PMJohn O'Reilly
06/08/2025, 5:02 PMMateusz Łuczak
06/10/2025, 4:31 PM./gradlew :composeApp:run
The issue is that when I run it this way, I lose the ability to easily check for errors or debug output within Android Studio.albrechtroehm
06/18/2025, 10:34 AMrunDistributable
i received the following error: IllegalAccessError: class androidx.compose.ui.node.NodeChain tried to access private field androidx.compose.runtime.collection.MutableVector.content (details thread). Going back to 1.7.3
or jumping ahead to 1.9.0-alpha02
made the issue disappear.
Edit: Forgot to mention that running it with the run
task worked always fine with every compose versionTrejkaz
06/19/2025, 3:44 PMwaitForIdle()
seems oddly flaky if the last thing that happened was a dialog appearing or disappearing. I had an assertExists()
fail to find the thing, but then find it a moment later when it tried with useUnmergedTree = true
- and no, it was in the merged tree too.Samuel
06/21/2025, 4:30 AMdesktopRun -DmainClass=io.github.samuelmarks.off_on_ml.MainActivity --quiet
• desktopRun -DmainClass=<http://io.github.samuelmarks.off_on_ml.App|io.github.samuelmarks.off_on_ml.App> --quiet
• desktopRun -DmainClass=io.github.samuelmarks.off_on_ml.Greeting --quiet
• desktopRun -DmainClass=io.github.samuelmarks.off_on_ml.Platform --quiet
• desktopRun -DmainClass=io.github.samuelmarks.off_on_ml.Platform.jvm --quiet
• desktopRun -DmainClass=io.github.samuelmarks.off_on_ml.main --quiet
• desktopRun -DmainClass=io.github.samuelmarks.off_on_ml --quiet
rnett
06/22/2025, 12:46 AMabraham
06/24/2025, 2:45 PMTextToolbar
but that doesn't seem to work on desktop. To be fair I couldn't find much documentation about that either.sunbreak
06/25/2025, 6:01 AM@Preview
for our internal projects. Tried to find source code of Kotlin Multiplatform
IDEA plugin, but found source code of Compose Multiplatform for Desktop IDE Support
IDEA plugin
• Any doc for how Kotlin Multiplatform
IDEA plugin works on @Preview
?
• Any chance for implementing @Preview
on Android/iOS project via Compose Multiplatform for Desktop IDE Support
IDEA plugin?
> Have tried to add CommonPreview
for IDEA plugin, which works for commonMain when project have desktop target: https://github.com/Sunbreak/compose-multiplatform/commit/ddd9071117ec0b4db95fff270b654d8a13aaa6aa
Slack Conversationsunbreak
06/25/2025, 6:04 AMKoltin Multiplatform
IDEA plugin 0.9 is unavailableabraham
06/25/2025, 5:58 PMstepango
06/27/2025, 7:24 PMSlackbot
06/29/2025, 10:33 AM