Nikita Kulikov

Results 59 comments of Nikita Kulikov

Can you record a video? I can't play it back and I don't understand at what point what events are happening. From an application point of view, flipper just returns...

Для миграции на 2024.2+ версии команда Jetbrains заявляет что необходима миграция на Intelij Plugin 2.0 https://plugins.jetbrains.com/docs/intellij/tools-intellij-platform-gradle-plugin.html В ветке обсуждения присутсвует костыль, позволяющий завести сборку со старым плагином, но его очень...

Еще и почти все UI DSL v1 удалили, придется переезжать на v2

@maxim-yudin выложишь собранный бинарь? Было бы полезно

I support the changes, but I also understand how unpleasant it will be to add a new library to the standard distribution. The main problem is Serialization and ImmutableList are...

@javagl fixed. I'm sorry it took so long and thank you for your help

This is theoretically possible, but you need to do the following: - Add firmware-side RPC support for BadUSB commands - Add iOS/Android support When we have time, we can look...

Any way to get push without Google service or any other system-wide analogue results in high battery consumption of the phone

What about this code? ```kotlin internalScope = CoroutineScope(scope.newCoroutineContext(EmptyCoroutineContext)) closeJob = internalScope.launch { try { awaitCancellation() } finally { withContext(NonCancellable) { close() } } } ```