You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Only one simulator may run at a time, so if you want to test the app
173
173
in a different simulator, you need to quit the simulator application
@@ -290,8 +290,10 @@ There is also support to mix and match command line arguments and parameters in
290
290
291
291
If you have a custom situation where you need to pass additional build flags to Xcode you would use one or more `--buildFlag` options to pass these flags to `xcodebuild`. If you use an `xcodebuild` built-in flag, it will show a warning.
cordova run --device --buildFlag="DEVELOPMENT_TEAM=FG35JLLMXX4A" --buildFlag="-scheme TestSchemeFlag"
296
+
```
295
297
296
298
You can also specify a `buildFlag` option in [`build.json` above](#using-buildjson) (the value for the `buildFlag` key is a string or an array of strings).
297
299
@@ -306,69 +308,29 @@ Cordova for iOS projects can be opened in Xcode. This can be useful if
306
308
you wish to use Xcode built in debugging/profiling tools or if you are
307
309
developing iOS plugins. Please note that when opening your project in Xcode,
308
310
it is recommended that you do NOT edit your code in the IDE. This will edit the code
309
-
in the ```platforms``` folder of your project (not ```www```), and changes are liable to be overwritten.
310
-
Instead, edit the ```www``` folder and copy over your changes by running ```cordova build```.
311
+
in the `platforms` folder of your project (not `www`), and changes are liable to be overwritten.
312
+
Instead, edit the `www` folder and copy over your changes by running `cordova build`.
311
313
312
-
Plugin developers wishing to edit their native code in the IDE should use the ```--link``` flag when adding their
314
+
Plugin developers wishing to edit their native code in the IDE should use the `--link` flag when adding their
313
315
plugin to the project via cordova plugin add. This will link the files so that changes to the plugin files in the
314
316
platforms folder are reflected in your plugin's source folder (and vice versa).
315
317
316
-
Once the ios platform is added to your project and built using ```cordova build```, you can open it from
317
-
within Xcode. Double-click to open the `${PROJECT_NAME}/platforms/ios/${PROJECT_NAME}.xcworkspace`
318
+
Once the ios platform is added to your project and built using `cordova build`, you can open it from
319
+
within Xcode. Double-click to open the `${PROJECT_NAME}/platforms/ios/App.xcworkspace`
0 commit comments