Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/brodycj/cordova-quick-start-checklist
https://github.com/brodycj/cordova-quick-start-checklist
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/brodycj/cordova-quick-start-checklist
- Owner: brodycj
- License: cc0-1.0
- Created: 2015-12-24T20:06:10.000Z (about 9 years ago)
- Default Branch: cordova-quick-start-checklist
- Last Pushed: 2015-12-29T20:42:48.000Z (about 9 years ago)
- Last Synced: 2024-07-31T00:17:18.197Z (6 months ago)
- Size: 4.88 KB
- Stars: 1
- Watchers: 4
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Cordova app quickstart checklist
LICENSE: CC0 (public domain) ref: http://creativecommons.org/publicdomain/zero/1.0/
Inspiration:
- [jessemonroy650 / top-phonegap-mistakes](https://github.com/jessemonroy650/top-phonegap-mistakes)
- [litehelpers / Cordova-sqlite-storage / issues](https://github.com/litehelpers/Cordova-sqlite-storage/issues)FUTURE TBD:
- cover both `cordova` CLI and `phonegap` CLI *and test*
- Document the actual shell commands for the steps below## Purpose
TBD
## Prerequisite(s)
- Cordova CLI installed
- Ability use the Cordova CLI to:
- create an app (using the default template);
- run it with no plugins;
- run it on any desired target platform(s)NOTE: These steps are very well documented (TBD add some links)
FUTURE TBD for consideration: add section to cover this
FUTURE TBD: how to add a new target platform
## Initial checklist
Outline:
- Ability to run on desired target platform(s) (new platforms may be added in the future)
- All desired target platform(s) are supported by all plugin(s) needed
- Verify that cordova-plugin-console is installed
- Verify ability to add a `console.log` statement to Javascript## Add a simple plugin
Goal: ability to use Cordova CLI to add a plugin and get it working before dealing with complexity of plugins such as Cordova File API and/or sqlite
- Recommendation: start with a very simple plugin such as cordova-plugin-dialogs
- add to project
- add to `onDeviceReady` function in Javascript
- `cordova prepare` command
- test on all desired target platform(s)## Fix iOS backup (basic configuration)
Configured by `BackupWebStorage` in `config.xml`
IMPORTANT: By default configuration the iOS version has iCloud backup enabled, which I think is wrong. For example, it is *NOT* allowed to store a SQLite database in iCloud backup. For more information: https://developer.apple.com/library/mac/documentation/General/Conceptual/iCloudDesignGuide/Chapters/iCloudFundametals.html
The other options are to disable iOS backup or enable local backups via iTunes sync. For more information: https://cordova.apache.org/docs/en/latest/guide/platforms/ios/config.html
I have already filed [Apache Cordova bug CB-9830](https://issues.apache.org/jira/browse/CB-9830) to fix the default iOS backup configuration.
## Adding sqlite plugin
- add to project
- add quick installation test code to the `onDeviceReady` function in Javascript
- verify that it works on all desired target platform(s)## Whitelist/security
- DEFAULT: no external requests, no navigation outside `file://` URL(s), no external URL intents (such as opening maps)
- configure as documented at: https://github.com/apache/cordova-plugin-whitelist
- intent whitelist (as documented at: https://github.com/apache/cordova-plugin-whitelist)
- IMPORTANT: Content Security Policy (as documented at: https://github.com/apache/cordova-plugin-whitelist)