EpicDima
EpicDima
I looked at the implementation, for support we need at least getting the value of the environment variable, which is platform-specific. This is enough for partial functionality. For full functionality,...
The checks failed without logs and everything was successful locally, I don't know what the problem is(
> The checks failed without logs and everything was successful locally, I don't know what the problem is( I think there was a problem with CI and running jobs
Added this to the demo sample in the `TerminalInfo` function: ```kotlin LaunchedEffect(screenSize) { Logger.d { "Demo - terminal size: ${screenWidth}x${screenHeight}" } } ``` Result (720p compressed video due to 10MB...
I reproduced it. This is quite expected, since we are not doing anything with the text now when we have a limited size (in this case, width), so it goes...
> Just in case do you have this set to false: https://plugins.jetbrains.com/docs/intellij/using-kotlin.html#kotlin-standard-library Yes, it is set to false. > And what Kotlin version are you using? https://kotlinlang.org/docs/gradle.html https://plugins.gradle.org/plugin/org.jetbrains.kotlin.jvm Kotlin 2.0.20
I tried these methods, but unfortunately, it's still the same error 😔
If run with `--debug`, the build will fail even earlier with another error, but what is similar to the first one is that it is also `java.lang.NoSuchMethodError`. Stacktrace ``` [ERROR]...
We checked on other devices, the same thing happens there, that is, it does not depend on a specific device, probably the problem is probably in the project or in...
`LazyColumn` was made in [Glance](https://cs.android.com/androidx/platform/frameworks/support/+/androidx-main:glance/glance-appwidget/src/main/java/androidx/glance/appwidget/lazy/LazyList.kt), while the implementation does not contain a lot of code, but I didn't understand how it works. At least it is implemented without an `SubcomposeLayout`.