Confirmed users
514
edits
(manifest and privileged issues) |
|||
| Line 160: | Line 160: | ||
$ cordova prepare | $ cordova prepare | ||
</pre> | </pre> | ||
==Manifest issues== | |||
Manifest is automatically created with every ``cordova prepare``. There should be a mechanism to provide these values in a configuration file. | |||
==Privileged issue== | |||
Default <code>index.html</code> created after <code>cordova prepare</code> contains inline javascript. The (temporary) solution is to remove inline script and add <code>document.onload = app.initialize();</code> at the end of the <code>www/js/index.js</code> file. | |||