Hi, I was trying to upgrade my Kotlin version from...
# multiplatform
v
Hi, I was trying to upgrade my Kotlin version from 2.1.0 to 2.1.21 and Compose from 1.7.1 to 1.8.1 And Now im facing this issue, the iOS app builds fine, but when it runs it just shows a blank screen and then crashes on its own without anything shown in the logs I already have this added in
gradle.properties
Copy code
kotlin.native.cacheKind=none
The logs just show this
I even tried reverting compose to 1.7.1, but it still has this same behaviour
Tried Kotlin 2.2.0-RC as well, same here too
t
> without anything shown in the logs Are you running the app on the simulator on on device? I am assuming you are running the app in Xcode. If you want to suspend before the process terminates, you will need to attach to the process with lldb: •
Product -> Scheme -> Edit Scheme...
to open the schemes menu and in the Run action check the
Debug executable
box to run the process with lldb • Otherwise if you don't attach the crashlog should be in ◦
~/Library/Logs/DiagnosticReports/$YourApp-$date.ips
for the simulator ◦ In
Product -> Destination -> Manage Run Destinations...
in the
Open Recent Logs
directory for the device
v
Hi, I am running the app on my iPhone, I just checked, I have this
Debug executable
already checked I also tried opening the recent logs of my device, and i dont find any logs of my app of the current session, all are old logs
App launches fine, but just shows a blank screen
I ran the app on a Simulator and this randomly popped up, still no crashes are being shown in the XCode Logs App was crashing due to some Koin related issue XCode never fails to surprise me.
t
Do you see any ips reports in:
Copy code
ls -lat ~/Library/Logs/DiagnosticReports/Medial*.ips
?