I'd like to investigate performance issues on kotl...
# multiplatform
y
I'd like to investigate performance issues on kotlin native (iOS), are there any tools like CPU profiling, method call tracing, etc for kotlin native on iOS? I'm a bit surprised that it took 0.4s on debug android build to run my code vs 3.8s on iOS simulator... I assume there might be a lot of allocations that degrade performance but overall it's difficult to investigate using only logs
t
@Yaroslav Shuliak I tend to run my code in the native environments for that purpose to monitor it. Android studio can only give you the Android side resources, but if you open Xcode and run your application there you should be able to see that information through Xcode's IDE. This may help: https://developer.apple.com/documentation/xcode/analyzing-memory-usage/