Post

Replies

Boosts

Views

Activity

Reply to App crash on launch only in Ireland
Might be related to the other issue I posted In that issue, we were passing a non-ISO date string to the Javascript new Date(). It works for some of the devices (Javascript runtime) but didn't work for all of them. And we make this call at a global level so it's causing the entire ReactNative app to crash. new Date("2023-01-01") // Invalid for SOME devices (Javascript runtime) new Date("2023-01-01T00:00:00.000Z") // Valid for all devices
Apr ’23
Reply to [App review] Crashes on launch, but works fine on my testing device
Might be related to the other issue I posted In that issue, we were passing a non-ISO date string to the Javascript new Date(). It works for some of the devices (Javascript runtime) but didn't work for all of them. And we make this call at a global level so it's causing the entire ReactNative app to crash. new Date("2023-01-01") // Invalid for SOME devices (Javascript runtime) new Date("2023-01-01T00:00:00.000Z") // Valid for all devices
Apr ’23
Reply to App crashed on launch only on some devices (passed App Store review)
After several hours of debugging, I found out that it was because we were passing a non-ISO date string to the Javascript new Date() object. It works for some of the devices (Javascript runtime) but didn't work for all of them. And we make this call at a global level so it's causing the entire ReactNative app to crash. new Date("2023-01-01") // Invalid for SOME devices (Javascript runtime) new Date("2023-01-01T00:00:00.000Z") // ISO date string valid for all devices
Apr ’23
Reply to App crash on launch only in Ireland
@Claude31 Yes, we're using the react native netinfo package to fetch the connection status when the App launch. And also used the expo-network package to get the IP address. Is it possible that the regional issue is caused by this? And how can we reproduce it since we've tried VPN to Ireland and it works.
Jan ’23