Adam Share

Results 25 comments of Adam Share

Running into similar issues on low end devices. Very suprised the a configuration builder would be performing such expensive operations. To initialize the builder `RealmConfiguration.Builder(schemaSet)` can take many seconds. Emulator...

Right was referring to usage of `kotlin.reflect.full.companionObjectInstance`. Not sure what the average number of properties are but 2-6 typically, probably closer to 2-3 on average. To test the impact I...

@rorbech The worst performance we have is on this custom hardware. Android version: 11 Manufacturer: bnd [Hardware Chip Set: mt8168](https://www.notebookcheck.net/MediaTek-MT8168-Processor-Benchmarks-and-Specs.483534.0.html) Memory: 2 GB

Running into performance issues with this with large queries. Found that there was some extra logic inside of the locks that could be moved out: https://github.com/apollographql/apollo-kotlin/pull/5101 This was minor performance...

@martinbonnin We might be able to work something out for that. What would be the best way to share this? Would a sample response be sufficient?

Agree. This would be ideal also to simulate a fresh reader unboxing as we just ran into an issue where new readers were unboxed for setup with a client and...

If you could try the code on the Develop branch and see if there's any change to you results. Will look into this further.

@zfrankz Yes it was pointed out to me that the TSClusterAnnotationView was being returned instead of the custom cluster annotation view class provided which is a bug. The reason being...

@zfrankz I'm assuming your map height change is animated? Recreated something like you describe with an animated change of the layout constraints to the mapView. I believe there's a clashing...

@zfrankz Nice that's probably the better way to do it. Since annotations are treated as subviews they re-layout during frame changes which causes the problems with animations.