Hey hi everyone!
We are building an iOS + Android compose multiplatform app. Most of it is just common code written in Kotlin.
The main focus of the app is hardware diagnostics: our company makes Bluetooth LE-enabled IoT devices, and the mobile app interacts with them over the BLE radio.
Apparently, the mobile app becomes battery-hungry under some circumstances, and we would like to analyse and optimise its performance on each platform.
Now, the problem is the Instruments tool available for iOS.
Is there a way to inspect the common code stacktraces using the Instruments?
Are there any known practices?
I know we can just comment out portions of code, and then compare the performance, but I'd really like to avoid doing that 😄