Just got stuck with this error while I'm trying to publish an app to app store. Sorry because i cant copy-paste the error code so I will post an image in my question.
相关问题
- CALayer - backgroundColor flipped?
- Core Data lightweight migration crashes after App
- Core Data lightweight migration crashes after App
- How can I implement password recovery in an iPhone
- State preservation and restoration strategies with
相关文章
- 现在使用swift开发ios应用好还是swift?
- UITableView dragging distance with UIRefreshContro
- Could I create “Call” button in HTML 5 IPhone appl
- TCC __TCCAccessRequest_block_invoke
- Where does a host app handle NSExtensionContext#co
- Unable to process app at this time due to a genera
- Swift - hide pickerView after value selected
- How do you detect key up / key down events from a
I faced the same error and its fixed by following these page instructions:![enter image description here](https://i.stack.imgur.com/J5Srk.gif)
http://dannysu.com/2014/04/16/not-optimized-for-iphone5/
Make sure also that you're pointing at the files in the correct location. We just had this problem after:
The names of the files appeared correctly, but we had the error. This was solved by clicking the little folder icon next to each of the launch images listed in the table in this section and finding the correct file in our project's Resources folder.
I tried a number of solutions and nothing worked, final solutoin was to use the RN toolbox to add a Splash screen which corrected whatever configuration was triggering the error: https://github.com/bamlab/generator-rn-toolbox
Add this image (Default-568h@2x.png) to in your project at the top layer as below.
Image to add:![enter image description here](https://i.stack.imgur.com/eqOPd.png)
I ran into this problem when I was using multiple storyboards in iOS 9. I solved it by going to Project Directory --> General, then for "Launch Screen File", selecting "Main"
An edge case, but I've had this happen if you mistakenly added localizations that you later didn't use (and therefore didn't add an iPhone 5 launch image). Select the project from Project Navigator. In the middle pane choose to view the Project (as opposed to one of the Targets). In the Info tab, scroll to the bottom and make sure there are no extraneous localizations.
Edit: Rereading the error message I guess it does elude to this, but sometimes an error message doesn't make sense until you figure out what it means another way.