Home > Net >  React Native app doesn't load on IOS versions 11 and 12
React Native app doesn't load on IOS versions 11 and 12

Time:01-29

When a user opens the app (from a physical device or a simulator) it just shows a blank screen and close (looks like a 0.5s flash, really fast).

Testing it on browserstack simulator (enter image description here

  • Complete log looks like the following in all failing versions:

Our logs from browserstack

Someone there already faced something like it or similar? Any suggestion about actions to be done in this case (app not opening in specific IOS versions?

CodePudding user response:

In my experience, the app not working on the physical devices looks to be an issue with the provisioning profile(especially the entitlements).

I see that [BrowserStack resigns the application][1] when uploading it to their remote devices, and applies their provisioning profile to the application. This could possibly be the reason for the application to work on iOS 13/14&15 on BrowserStack.

You could reach out to your developer for more details or reach out to BrowserStack at [email protected].

CodePudding user response:

The problem was with a problematic version of a package called react-native-share. More details about this: https://giters.com/react-native-share/react-native-share/issues/1095.

Updating this package solved it :)

  •  Tags:  
  • Related