You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have the same crash happen on Apple Watch, which apparently is using 32-bit integers (probably the same as @Pixette's app on an iOS 9 device).
For example, it's trying to use epochInterval value 1658180394, which is multiplied by 1000 and then cast into an Int. The value of Int.max is 2147483647 on this device, so the assignment would be fine without the multiplication (until 19 January 2038, that is!), but with the multiplication it crashes big time.
Hello!
Updating mixpanel pod from 3.1.0 to 3.5.0 causes my app to crash very frequently on iOS 9.3.5
Error is following:
Issue can always be reproduced on my iOS 9.3.5 device.
I reverted to 3.1.0 to solve the issue.
Thank you in advance for your help
The text was updated successfully, but these errors were encountered: