roman-rr commented on issue #990:
URL: https://github.com/apache/cordova-ios/issues/990#issuecomment-705749958


   Finally i use this solution: 
   
   ```bash
   npm rm cordova-ios
   npm i [email protected]
   ```
   
   **config.xml**
   ```xml
   <platform name="ios">
     <hook src="scripts/patchStoryboard.sh" type="after_prepare" />
     ...
   </platform>   
   ```
   
   **scripts/patchStoryboard.sh**
   ```sh
   #!/bin/bash
   
   if [[ ! -f /usr/libexec/PlistBuddy ]]; then
   exit 0
   fi
   
   PLIST=./platforms/ios/*/*-Info.plist
   /usr/libexec/PlistBuddy -c 'Delete UILaunchStoryboardName' $PLIST
   ```


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
[email protected]



---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to