We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
NW.js uses one child app to work on OS X, as listed below:
NW.js
YourApp.app/Contents/Versions/*/nwjs Helper.app
To prevent collisions with other existing apps, you will have to set a unique bundle identifier to each helper.
To do so, you can use your app identifier (com.yourcompanyname.yourappname) as a base, and perform the following changes.
com.yourcompanyname.yourappname
In YourApp.app/Contents/Versions/*/nwjs Helper.app/Contents/Info.plist, replace:
YourApp.app/Contents/Versions/*/nwjs Helper.app/Contents/Info.plist
<key>CFBundleIdentifier</key> <string>io.nwjs.nw.helper</string>
With:
<key>CFBundleIdentifier</key> <string>com.yourcompanyname.yourappname.helper</string>