-
Notifications
You must be signed in to change notification settings - Fork 313
todo: update cordova iOS docs #653
Comments
Todo: Creating the app listing
This is called "App Store Connect" now I think. Just adding the note so I don't forget to PR. |
Creating an archive of the application
Add in between the above two lines: Click on "distribute app" > "iOS app store" > "upload" then go through the next options with the default choices. |
add info on: choosing a simulator
This will open a simulator in the device you specify. For a list of possible devices to choose from developing directly on phoneIf you connect an iOS device via USB you can develop with hot reload and all changes are instantly updated on your phone! This is the best mode to develop to assure everything works correctly on the actual device. This is also important for some features that will not work on the simulator, like:
It's sometimes a challenge to get this to work the first time.
One build problem you'll probably encounter is:
This is because the latest Cordova version is not yet compatible with the latest build method in Xcode 10. To be able to have your build work with Xcode 10 you need to add a {
"ios": {
"debug": {
"buildFlag": [
"-UseModernBuildSystem=0"
]
},
"release": {
"buildFlag": [
"-UseModernBuildSystem=0"
]
}
}
} Then you need to select the "Legacy Build System" in Xcode before you archive your app, because Cordova is not yet compatible with the new build system. |
Chapters like iOS publishing > Signing seem a bit outdated.
I cannot find "View Details" or "create".
Once I'm able to get my first app up and running I'll make some PR's on the docs.
The text was updated successfully, but these errors were encountered: