Results 12 comments of 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? ![snipaste_2018-02-08_20-59-13](https://user-images.githubusercontent.com/1530314/35989711-f57531fa-0d12-11e8-8d69-deae360f9b9b.png)

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: ![image](https://user-images.githubusercontent.com/1530314/138562690-884eab59-fc47-4a90-a851-1bf893034447.png) But faced a new issue: ![image](https://user-images.githubusercontent.com/1530314/138562732-1db1316b-4c56-4a8b-b299-54c0ffa764d1.png) It happen even if I use builtin list serializer: ![image](https://user-images.githubusercontent.com/1530314/138562769-8a2cf797-1b1f-4eb0-a709-62dd95cb6e95.png) Is it possible to fix it? I have no idea...

@sandwwraith but not always... Here the case where compilation error occurs. I can`t understand why. I can provide sample if needed ![image](https://user-images.githubusercontent.com/1530314/139472497-8794503f-e37e-4afe-8940-82467bb079f5.png)

@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) // ... }...