Crash on Splash Screen iOS 12.3.1
See original GitHub issueRun react-native info
in your project and share the content.
Environment:
OS: macOS 10.14.5
Node: 10.15.3
Yarn: 1.16.0
npm: 6.4.1
Watchman: 4.9.0
Xcode: Xcode 10.2.1 Build version 10E1001
Android Studio: 3.4 AI-183.5429.30.34.5452501
Packages: (wanted => installed)
react: 16.3.1 => 16.3.1
react-native: ^0.55.4 => 0.55.4
What react-native-splash-screen
version are you using?
"react-native-splash-screen": "^3.0.9",
What platform does your issue occur on? (Android/iOS/Both)
iOS
Describe your issue as precisely as possible :
- Steps to reproduce the issue or to explain in which case you get the issue
The issue usually happens when I submit the app for release to TestFlight. At the moment it’s being rejected, cause they only receive a blank screen. I’m unable to reproduce the bug locally.
- Interesting
logs
Join a screenshot or video of the problem on the simulator or device?
Show us the code you are using?
Issue Analytics
- State:
- Created 4 years ago
- Reactions:6
- Comments:16
Top Results From Across the Web
ios 12 crash on launch after splash screen - Apple Developer
Hi, when our users update their ios to 12, for some of them our app start to crash on launch, exactly after splash...
Read more >iOS release version crashes immediately after showing splash ...
My release version on the app store is crashing directly after the splash screens show up. Debug version runs fine as does the...
Read more >Ios Application Crash After Launch Screen - ADocLib
This message typically appears on iOS devices when your application Xcode but crashes while loading the first level when launched manually on the...
Read more >Xamarin.iOS app crash after splash screen - condition 'oti' not ...
The intriguing part about this problem is that the app works perfectly fine on the iPhone 6s Plus with iOS version 12.3.1 but...
Read more >Apps Crashing on macOS Ventura? Here's the Fix
Incompatible apps will crash on startup. You should update them to a version compatible with macOS Ventura. For apps downloaded from the Apple ......
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
I can confirm using
I can confirm using : [RNSplashScreen showSplash:@“LaunchScreen” inRootView:rootView]; instead of [RNSplashScreen show]
fixed crash for me.
FYI, I will try to use
[RNSplashScreen showSplash:@"LaunchScreen" inRootView:rootView];
instead of[RNSplashScreen show]
. You just have to create a View (.xib) via Xcode.It seems like it’s fixing the problem since it won’t go into the Run Loop that was causing the crash.
EDIT: I confirm that you can workaround this issue by using the
showSplash:inRootView:
method instead ofshow
(cc @corelmax @chevonc @mcorner @sebiVPS @colaskirschoff )