sudo npm install -g cordova
cordova platforms add android
cordova platforms add ios
cordova platforms add browser
(Currently does not support audio recording)cordova plugin add cordova-plugin-audioinput
www/
has the JS and UIplugins
contains cordova endpoints for micplatforms
contains native specific projects for iOS/Android
cordova run ios
cordova run android
cordova run browser
(Browser is convenient for UI work only)
- Install XCode
- cd platforms/ios/
- Open xcodeproj via XCode
- Create a wildcard provisioning profile on iTunes Connect if you don't have one already.
- Click "Fix Code Signing Issues" if applicable under "General Settings."
- Select your iOS device as the target.
- Build and run.
CMD + B
andCMD + R
- Open Safari and navigate to
Develop > Your Device
- The Safari browser will open and you can debug/inspect.
- Install Android Studio
- Update all drivers and check all software additions they throw at you.
- Create an emulator or hook up your device.
- Build and run.
- Open Chrome and enter in the URL:
chrome://inspect
- The new window will mirror your device and you can debug/inspect.