How to solve "NSException Could not load NIB in bundle: NSBundle"
Configure your storyboard segue with SBSDKScannerViewController as the controller class.
If that doesn't work: Xcode 12.3 has a new workspace validation step that's enabled by default. This runs before our architect-stripping script, causing a premature error. To fix this, go to your app target's build settings and set Validate Workspace to YES, then NO. This adds VALIDATE_WORKSPACE = NO;
to your project file.