Jeff Lockhart

Results 32 comments of Jeff Lockhart

Definitely still getting these warnings with the latest code on the master branch today. They are the only warnings in my project. It would be very nice to have them...

Fixed in https://github.com/a-tolstykh/textview-rich-drawable/pull/21.

@soywiz I ran into this as well. I'm using korio in multiplatform tests for file unzip, which is how I ran into #842. I'm ok using Kotlin 1.7.20-RC for now,...

I am getting these same crashes in crash logs from the app I recently added coswift to. ``` Crashed: com.apple.root.default-qos SIGABRT ABORT 0x0000000183a0fd88 Crashed: com.apple.root.default-qos 0 libsystem_kernel.dylib 0x183a0fd88 __pthread_kill +...

After changing the `Chan`s to `Promise`s, the crash continues. So this isn't specifically caused by one or the other.

This seems to be resolved with a change I made to ensure canceling an active coroutine before dismissing a view controller.

I took your sample code and tested it and found indeed there is something weird going on here, but it's actually a problem with the v2.2.6 build itself. I was...

As I was working on these changes https://github.com/googlemaps/android-maps-utils/pull/609 as well as support for KMZ files, which I can make a PR for as soon as this one is merged, I...

I CPU profiled loading this KML and the bottleneck is calling `GoogleMap.addPolygon()`. It calls the method 9377 times, since there's so many polygons in the 20 KMLs embedded in this...

`KmlLayer` is created before calling `addLayerToMap()`, which adds the polygons to the map. Constructing `KmlLayer` is also fairly long-running, as it takes a good amount of I/O and processing to...