Artem Zanin
Artem Zanin
Coroutines is separate library, which must be connected to this library. Maybe something like [this](https://github.com/illuzor/KAndroid/blob/master/kandroid/src/main/kotlin/com/pawegio/kandroid/KThread.kt)?
I think we should avoid using nulls (especially in kotlin). Why not just use the default values? 
This bug is fixed in 18 beta. http://labsdownload.adobe.com/pub/labs/flashruntimes/shared/air18_flashplayer18_releasenotes.pdf
Вот тут есть описание http://www.flasher.ru/forum/blog.php?b=713
I made my own [implementation](https://github.com/illuzor/Kind-List-Serializer/blob/main/src/main/kotlin/com/illuzor/kindlistserializer/KindListSerializer.kt) Easy to apply it to list: ``` kotlin @Serializable private data class Data(val name: String, val value: Int) val jsonString ="""[{"name":"Name1","value":11},{"name":"Name2","value":22}]""" val serializer = kindListSerializer(Data.serializer())...
I found solution:  But faced a new issue:  It happen even if I use builtin list serializer:  Is it possible to fix it? I have no idea...
@sandwwraith thank you! It works
@sandwwraith but not always... Here the case where compilation error occurs. I can`t understand why. I can provide sample if needed 
@pdvrieze Thank you! It works, but I can't figure out how. But why does it works [here](https://github.com/illuzor/Kind-List-Serializer/commit/28219e7203decf29c14eb0c49a1e0c9aba386f0e#diff-b4c63f2999dce12e25eb75d800075f161347efdd54385b9aee6cdcb9674e6f64)?
The same in 1.6.0, but no problem with 1.4.0 It happens when measure() called with MeasureSpec.UNSPECIFIED: ``` kotlin override fun onMeasure(widthMeasureSpec: Int, heightMeasureSpec: Int) { bottomNavigation.measure(widthMeasureSpec, MeasureSpec.UNSPECIFIED) // ... }...