├── .asf.yaml ├── .eslintrc.yml ├── .github ├── ISSUE_TEMPLATE.md ├── ISSUE_TEMPLATE │ ├── BUG_REPORT.md │ ├── FEATURE_REQUEST.md │ └── SUPPORT_QUESTION.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── ci.yml │ └── deploy.yml ├── .gitignore ├── .npmrc ├── CONTRIBUTING.md ├── Gemfile ├── LICENSE ├── NOTICE ├── README.md ├── VERSION ├── conf ├── README.md ├── _config.yml ├── _dev.yml ├── _nodocs.yml └── _prod.yml ├── doc ├── blogpost.md ├── building-and-deploying-the-website.md ├── building-the-website.md ├── deploying-the-website.md ├── developing-the-website.md ├── docs-STYLEGUIDE.md ├── installing-a-development-environment.md ├── redirects.md ├── testing-the-website.md ├── tool-or-showcase-app.md ├── translate.md ├── troubleshooting.md └── working-on-docs.md ├── gulpfile.js ├── package.json ├── tools ├── HeaderTransform.js └── bin │ ├── augment_toc.js │ ├── fetch_docs.js │ ├── gen_defaults.js │ ├── gen_pages_dict.js │ ├── gen_versions.js │ ├── linkify-bugs.sh │ ├── nextversion.js │ ├── toc.js │ └── util.js └── www ├── .htaccess ├── _data ├── constants.yml ├── contribute-repo-links.yml ├── fetched-files.yml ├── mailing-lists.yml ├── plugins.yml ├── redirects.yml ├── toc │ ├── en_1-5-0-src.yml │ ├── en_1-6-0-src.yml │ ├── en_1-6-1-src.yml │ ├── en_1-7-0-src.yml │ ├── en_1-8-0-src.yml │ ├── en_1-8-1-src.yml │ ├── en_1-9-0-src.yml │ ├── en_10-x-src.yml │ ├── en_11-x-src.yml │ ├── en_12-x-2025-01-src.yml │ ├── en_12-x-src.yml │ ├── en_13-x-2025-11-src.yml │ ├── en_2-0-0-src.yml │ ├── en_2-1-0-src.yml │ ├── en_2-2-0-src.yml │ ├── en_2-3-0-src.yml │ ├── en_2-4-0-src.yml │ ├── en_2-5-0-src.yml │ ├── en_2-6-0-src.yml │ ├── en_2-7-0-src.yml │ ├── en_2-8-0-src.yml │ ├── en_2-9-0-src.yml │ ├── en_3-0-0-src.yml │ ├── en_3-1-0-src.yml │ ├── en_3-2-0-src.yml │ ├── en_3-3-0-src.yml │ ├── en_3-4-0-src.yml │ ├── en_3-5-0-src.yml │ ├── en_3-6-0-src.yml │ ├── en_4-0-0-src.yml │ ├── en_5-0-0-src.yml │ ├── en_5-1-1-src.yml │ ├── en_5-4-0-src.yml │ ├── en_6-x-src.yml │ ├── en_7-x-src.yml │ ├── en_8-x-src.yml │ ├── en_9-x-src.yml │ └── en_dev-src.yml └── tools.yml ├── _includes ├── analytics.html ├── footer_contents.html ├── footer_docs.html ├── footer_site.html ├── generated_docs_index.html ├── head.html ├── header.html ├── sitemap_entry.html ├── toc_recursive_dropdown.html └── toc_recursive_main.html ├── _layouts ├── base.html ├── blog.html ├── contribute.html ├── cordova.html ├── docs-en.html ├── docs.html ├── page.html ├── plugins.html ├── post.html └── team.html ├── _members ├── dpogue.md ├── erisu.md ├── jessemacfadyen.md ├── knaito.md ├── niklasmerz.md └── normanbreau.md ├── _plugins ├── cdv-platform-tag.rb └── cdv-vartype-tag.rb ├── _posts ├── 2013-07-08-cordova-has-a-blog.md ├── 2013-07-23-cordova-3.md ├── 2013-08-12-crowdintranslation.md ├── 2013-09-06-last-week.md ├── 2013-09-13-last-week.md ├── 2013-10-01-plugins-release.md ├── 2013-10-02-cordova-31.md ├── 2013-10-10-plugins-release.md ├── 2013-10-21-cordova-registry.md ├── 2013-10-28-plugins-release.md ├── 2013-11-06-cordova-291.md ├── 2013-11-13-cordova-320rc1.md ├── 2013-11-15-kitkat.md ├── 2013-11-22-cordova-320.md ├── 2013-12-04-plugins-release.md ├── 2013-12-06-cordova-330rc1.md ├── 2013-12-16-cordova-330.md ├── 2014-01-02-plugins-release.md ├── 2014-01-31-tools-release.md ├── 2014-02-10-plugins-release.md ├── 2014-02-20-cordova-340.md ├── 2014-03-03-plugins-release.md ├── 2014-03-05-tools-release.md ├── 2014-04-09-tools-ios-release.md ├── 2014-04-23-plugins.release.md ├── 2014-05-23-cordova-350.md ├── 2014-06-12-plugins-release.md ├── 2014-07-08-plugins-release.md ├── 2014-07-10-tools-release.md ├── 2014-08-04-android-351.md ├── 2014-08-06-android-351-update.md ├── 2014-08-11-plugins-release.md ├── 2014-08-13-tools-update.md ├── 2014-09-08-cordova-361.md ├── 2014-09-22-plugins-release.md ├── 2014-10-16-cordova-4.md ├── 2014-10-17-plugins-release.md ├── 2014-11-06-cordova-ios-3.7.0.md ├── 2014-11-06-cordova-wp-windows-3.7.0.md ├── 2014-11-11-windows-cert.md ├── 2014-11-13-tools-release.md ├── 2014-11-18-cordova-perf.md ├── 2014-11-25-ios-64bit.md ├── 2014-12-09-plugins-release.md ├── 2015-01-09-tools-release.md ├── 2015-02-06-cordova-android-3.7.1.md ├── 2015-02-10-plugins-release.md ├── 2015-02-25-cordova-ios-3.8.0.md ├── 2015-02-27-cordova-windows-3.8.0.md ├── 2015-03-02-tools-release.md ├── 2015-04-15-cordova-android-4.0.0.md ├── 2015-04-21-plugins-release-and-move-to-npm.md ├── 2015-04-21-tools-release.md ├── 2015-05-26-android-402.md ├── 2015-06-03-windows-release.md ├── 2015-06-04-tools-release.md ├── 2015-06-10-tools-release.md ├── 2015-06-22-plugins-release.md ├── 2015-07-21-cordova-android-4.1.0.md ├── 2015-08-04-cordova-ios-3.9.0.md ├── 2015-08-13-tools-release.md ├── 2015-08-18-cordova-windows-4.1.0.md ├── 2015-09-05-cordova-blackberry-3.8.0.md ├── 2015-09-08-cpr-readonly.md ├── 2015-09-09-tools-release.md ├── 2015-09-21-file-transfer-release.md ├── 2015-09-22-tools-release.md ├── 2015-11-02-cordova-ios-3.9.2.md ├── 2015-11-06-tools-release.md ├── 2015-11-09-cordova-android-5.0.0.md ├── 2015-11-11-cordova-windows-4.2.0.md ├── 2015-11-20-security.md ├── 2015-11-24-plugins-release.md ├── 2015-11-24-tools-release.md ├── 2015-12-08-cordova-ios-4.0.0.md ├── 2015-12-08-wkwebview-engine-plugin-release.md ├── 2015-12-14-plugins-release.md ├── 2015-12-18-cordova-ios-4.0.1.md ├── 2016-01-08-cordova-ubuntu-4.3.2.md ├── 2016-01-08-cordova-ubuntu-4.3.3.md ├── 2016-01-18-cordova-windows-4.3.0.md ├── 2016-01-19-plugins-release.md ├── 2016-01-24-cordova-android-5.1.0.md ├── 2016-01-28-tools-release.md ├── 2016-02-04-cordova-windows-4.3.1.md ├── 2016-02-04-plugins-release.md ├── 2016-02-09-plugins-release.md ├── 2016-02-16-osx-4.0.0.md ├── 2016-03-02-cordova-android-5.1.1.md ├── 2016-03-02-ios-4.1.0.md ├── 2016-03-03-docs-improvement.md ├── 2016-03-04-cordova-browser-4.1.0.md ├── 2016-03-12-plugin-release.md ├── 2016-03-22-new-plugin-fetching.md ├── 2016-03-23-tools-release.md ├── 2016-04-04-ios-4.1.1.md ├── 2016-04-04-tools-release.md ├── 2016-04-05-cordova-windows-4.3.2.md ├── 2016-04-20-plugins-release.md ├── 2016-04-27-security.md ├── 2016-05-24-tools-release.md ├── 2016-06-03-cordova-windows-4.4.0.md ├── 2016-06-14-cordova-ubuntu-4.3.4.md ├── 2016-06-23-ios-4.2.0.md ├── 2016-07-02-android-5.2.0.md ├── 2016-07-11-cordova-android-5.2.1.md ├── 2016-07-13-cordova-windows-4.4.1.md ├── 2016-07-13-tools-release.md ├── 2016-07-27-cordova-windows-4.4.2.md ├── 2016-08-12-tools-release.md ├── 2016-08-22-android-ios-release.md ├── 2016-09-14-plugins-release.md ├── 2016-10-01-0.x-4.x-deprecation-timeline.md ├── 2016-10-04-small-releases.md ├── 2016-10-24-android-release.md ├── 2016-10-24-cordova-windows-4.4.3.md ├── 2016-10-24-ios-release.md ├── 2016-10-25-tools-release.md ├── 2016-11-07-android-release.md ├── 2016-12-02-ios-release.md ├── 2016-12-07-plugins-release.md ├── 2016-12-12-plugins-release.md ├── 2017-01-05-android-release.md ├── 2017-01-23-tools-release.md ├── 2017-01-27-android-612.md ├── 2017-02-01-committership.md ├── 2017-02-13-cordova-windows-5.0.0.md ├── 2017-03-07-plugins-release.md ├── 2017-03-30-screen-orientation-plugin.md ├── 2017-04-05-android-release.md ├── 2017-04-26-ios-release.md ├── 2017-04-28-android-release.md ├── 2017-05-01-plugins-release.md ├── 2017-05-04-android-release.md ├── 2017-05-04-cordova-7.md ├── 2017-05-12-tools-release.md ├── 2017-08-29-browser-serve-release.md ├── 2017-09-05-cordova-common-2.1.0.md ├── 2017-09-08-ios-release.md ├── 2017-09-22-plugins-release.md ├── 2017-09-25-ios-release.md ├── 2017-09-27-android-release.md ├── 2017-10-10-tools-release.md ├── 2017-10-16-ios-release.md ├── 2017-10-18-from-filetransfer-to-xhr2.md ├── 2017-10-19-browser-release.md ├── 2017-10-30-fetch-release.md ├── 2017-10-31-ios-release.md ├── 2017-11-09-android-release.md ├── 2017-11-10-plugins-release.md ├── 2017-11-20-migrate-from-cordova-globalization-plugin.md ├── 2017-11-21-ios-release.md ├── 2017-11-27-Deprecation-of-cordova-contacts-plugin.md ├── 2017-12-04-cordova-android-7.0.0.md ├── 2017-12-18-tools-release.md ├── 2017-12-20-plugins-release.md ├── 2017-12-30-plugins-release.md ├── 2018-01-29-plugins-release.md ├── 2018-02-02-cordova-simulate.md ├── 2018-02-26-cordova-android-7.1.0.md ├── 2018-02-27-cordova-windows-6.0.0.md ├── 2018-04-16-plugins-release.md ├── 2018-06-04-common-release.md ├── 2018-06-19-common-release-2.2.4.md ├── 2018-06-26-cordova-js-release-4.2.4.md ├── 2018-07-18-cordova-android-7.1.1.md ├── 2018-07-23-common-release-2.2.5.md ├── 2018-07-26-cordova-ios-4.5.5.md ├── 2018-08-01-future-cordova-ios-webview.md ├── 2018-08-10-cordova-browser-5.0.4.md ├── 2018-08-14-cordova-osx-4.0.2.md ├── 2018-09-17-cordova-fetch-1.3.1.md ├── 2018-09-17-cordova-lib-8.1.0.md ├── 2018-09-26-cordova-cli-8.1.0.md ├── 2018-09-27-cordova-cli-8.1.1.md ├── 2018-10-04-cordova-windows-6.0.1.md ├── 2018-10-05-cordova-lib-8.1.1.md ├── 2018-10-07-cordova-cli-8.1.2.md ├── 2018-11-07-cordova-android-7.1.2.md ├── 2018-11-21-cordova-android-7.1.3.md ├── 2018-11-23-cordova-android-7.1.4.md ├── 2018-12-21-xcode-1.1.0.md ├── 2018-12-25-tools-release.md ├── 2019-01-03-common-release-3.1.0.md ├── 2019-01-10-create-release-2.0.0.md ├── 2019-01-17-xcode-release-2.0.0.md ├── 2019-02-04-cordova-browser-6.0.0.md ├── 2019-02-04-cordova-osx-release-5.0.0.md ├── 2019-02-09-cordova-ios-release-5.0.0.md ├── 2019-02-16-cordova-android-release-8.0.0.md ├── 2019-02-28-cordova-electron-release-1.0.0.md ├── 2019-03-08-cordova-windows-release-7.0.0.md ├── 2019-03-18-cordova-electron-release-1.0.2.md ├── 2019-03-18-cordova-lib-release-9.0.0.md ├── 2019-03-22-cordova-cli-release-9.0.0.md ├── 2019-03-22-cordova-plugman-release-3.0.0.md ├── 2019-04-11-nodejs-6.x-8.x-deprecation-timeline.md ├── 2019-04-22-cordova-ios-5.0.1.md ├── 2019-06-14-common-release-3.2.0.md ├── 2019-07-01-cordova-electron-release-1.1.0.md ├── 2019-08-27-cordova-electron-release-1.1.1.md ├── 2019-09-17-cordova-android-release-8.1.0.md ├── 2019-11-05-cordova-common-release-3.2.1.md ├── 2019-11-25-cordova-ios-release-5.1.0.md ├── 2019-12-02-cordova-ios-release-5.1.1.md ├── 2019-12-24-xcode-release-2.1.0.md ├── 2020-01-06-cordova-windows-release-7.0.1.md ├── 2020-01-08-inappbrowser-release-3.2.0.md ├── 2020-03-18-wkwebviewonly.md ├── 2020-03-30-cordova-common-release-4.0.0.md ├── 2020-04-13-tools-template-release.md ├── 2020-06-01-cordova-ios-release-6.0.0.md ├── 2020-06-01-tools-release.md ├── 2020-06-13-plugins-release.md ├── 2020-06-15-osx-release-6.0.0.md ├── 2020-06-23-cordova-ios-6.1.0.md ├── 2020-06-29-cordova-android-9.0.0.md ├── 2020-07-04-cordova-common-release-4.0.2.md ├── 2020-07-18-uiwebview-warning.md ├── 2020-07-21-splashscreen-plugin-release.md ├── 2020-07-28-cordova-lib-release-10.0.0.md ├── 2020-08-04-cordova-cli-release-10.0.0.md ├── 2020-08-14-goodbye-phonegap.md ├── 2020-08-31-cordova-ios-6.1.1.md ├── 2020-09-18-camera-plugin-release.md ├── 2020-09-29-cve-2020-6506.md ├── 2020-10-02-cordova-electron-release-2.0.0.md ├── 2020-11-30-cve-2020-11990.md ├── 2021-02-02-cordova-fetch-3.0.1.md ├── 2021-02-02-wkwebview-engine-release.md ├── 2021-02-04-cordova-ios-release-6.2.0.md ├── 2021-02-07-deprecate-wkwebview-engine.md ├── 2021-02-16-inappbrowser-release-5.0.0.md ├── 2021-04-13-cordova-android-9.1.0.md ├── 2021-05-11-camera-plugin-release.md ├── 2021-06-03-network-information-plugin-release.md ├── 2021-06-28-whitelist-plugin-release.md ├── 2021-07-20-cordova-android-10.0.0.md ├── 2021-07-30-cordova-android-10.0.1.md ├── 2021-08-16-cordova-android-10.1.0.md ├── 2021-08-23-camera-plugin-6.0.0-release.md ├── 2021-08-25-translations.md ├── 2021-09-06-cordova-electron-release-3.0.0.md ├── 2021-09-15-cordova-android-release-10.1.1.md ├── 2021-10-08-cordova-lib-release-10.1.0.md ├── 2021-10-31-template-release.md ├── 2021-12-21-cordova-cli-11.0.0-release.md ├── 2022-01-25-media-plugin-5.0.4-release.md ├── 2022-03-09-osx-release-7.0.0.md ├── 2022-03-22-osx-deprecation.md ├── 2022-04-06-splashscreen-plugin-release.md ├── 2022-04-11-file-plugin-7.0.0-device-plugin-2.1.0-release.md ├── 2022-04-15-cordova-android-release-10.1.2.md ├── 2022-05-30-cordova-electron-release-3.1.0.md ├── 2022-05-30-media-plugin-6.0.0-media-capture-plugin-4.0.0-release.md ├── 2022-07-12-cordova-android-release-11.0.0.md ├── 2022-09-09-media-plugin-6.1.0.md ├── 2022-11-15-cordova-common-release-4.1.0.md ├── 2023-01-16-cordova-cli-11.1.0-release.md ├── 2023-02-24-screen-orientation-plugin-3.0.3.md ├── 2023-03-09-cordova-common-release-5.0.0.md ├── 2023-04-15-cordova-ios-release-6.3.0.md ├── 2023-05-13-cordova-browser-release-7.0.0.md ├── 2023-05-22-cordova-android-12.0.0.md ├── 2023-05-22-cordova-cli-12.0.0.md ├── 2023-07-10-cordova-ios-7.0.0.md ├── 2023-07-11-file-plugin-8.0.0.md ├── 2023-08-18-media-capture-plugin-5.0.0.md ├── 2023-08-28-cordova-android-12.0.1.md ├── 2023-09-06-cordova-ios-7.0.1.md ├── 2023-09-12-camera-media-file-transfer-plugin-release.md ├── 2023-09-21-geolocation-plugin-5.0.0.md ├── 2023-11-23-inappbrowser-release-6.0.0.md ├── 2023-11-24-survey.md ├── 2024-01-12-survey-results.md ├── 2024-03-11-cordova-electron-release-4.0.0.md ├── 2024-04-03-cordova-ios-7.1.0.md ├── 2024-05-23-cordova-android-13.0.0.md ├── 2024-07-24-cordova-ios-7.1.1.md ├── 2024-10-21-cordova-ios-8.1.1-beta.1.md ├── 2024-10-23-cordova-plugin-file-8.1.1.md ├── 2024-10-28-cordova-plugin-file-8.1.2.md ├── 2024-11-01-cordova-lib-release-12.0.2.md ├── 2024-11-02-camera-plugin-camera-8.0.0.md ├── 2024-11-20-cordova-plugin-file-8.1.3.md ├── 2025-01-08-meetup-1.md ├── 2025-01-31-meetup-1-recording.md ├── 2025-02-02-cordova-common-5.0.1.md ├── 2025-02-26-cordova-plugin-media-capture-6.0.0.md ├── 2025-03-26-cordova-android-14.0.0.md ├── 2025-04-30-cordova-android-14.0.1.md ├── 2025-08-09-cordova-common-6.0.0.md ├── 2025-08-29-cordova-app-hello-world-7.0.0.md ├── 2025-08-29-cordova-fetch-5.0.0.md ├── 2025-10-22-cordova-create-6.0.0.md ├── 2025-11-05-cordova-lib-13.0.0.md ├── 2025-11-23-cordova-ios-8.0.0.md └── 2025-11-25-cordova-cli-13.0.0.md ├── artwork.html ├── attributions.html ├── blog └── index.html ├── contact └── index.html ├── contribute ├── contribute_guidelines.md ├── index.html ├── issues.md ├── nightly_builds.md └── team.html ├── deprecation_policy.md ├── docs └── en │ ├── 1.5.0 │ ├── guide │ │ ├── getting-started │ │ │ ├── android │ │ │ │ └── index.md │ │ │ ├── blackberry │ │ │ │ └── index.md │ │ │ ├── index.md │ │ │ ├── ios │ │ │ │ └── index.md │ │ │ ├── symbian │ │ │ │ └── index.md │ │ │ ├── webos │ │ │ │ └── index.md │ │ │ └── windows-phone │ │ │ │ └── index.md │ │ └── upgrading │ │ │ ├── blackberry │ │ │ └── index.md │ │ │ └── webos │ │ │ └── index.md │ ├── index.md │ └── phonegap │ │ ├── accelerometer │ │ ├── acceleration │ │ │ └── acceleration.md │ │ ├── accelerometer.clearWatch.md │ │ ├── accelerometer.getCurrentAcceleration.md │ │ ├── accelerometer.md │ │ ├── accelerometer.watchAcceleration.md │ │ └── parameters │ │ │ ├── accelerometerError.md │ │ │ ├── accelerometerOptions.md │ │ │ └── accelerometerSuccess.md │ │ ├── camera │ │ ├── camera.getPicture.md │ │ ├── camera.md │ │ └── parameter │ │ │ ├── cameraError.md │ │ │ ├── cameraOptions.md │ │ │ └── cameraSuccess.md │ │ ├── compass │ │ ├── compass.clearWatch.md │ │ ├── compass.clearWatchFilter.md │ │ ├── compass.getCurrentHeading.md │ │ ├── compass.md │ │ ├── compass.watchHeading.md │ │ ├── compass.watchHeadingFilter.md │ │ ├── compassError │ │ │ └── compassError.md │ │ └── parameters │ │ │ ├── compassError.md │ │ │ ├── compassHeading.md │ │ │ ├── compassOptions.md │ │ │ └── compassSuccess.md │ │ ├── connection │ │ ├── connection.md │ │ └── connection.type.md │ │ ├── contacts │ │ ├── Contact │ │ │ └── contact.md │ │ ├── ContactAddress │ │ │ └── contactaddress.md │ │ ├── ContactError │ │ │ └── contactError.md │ │ ├── ContactField │ │ │ └── contactfield.md │ │ ├── ContactFindOptions │ │ │ └── contactfindoptions.md │ │ ├── ContactName │ │ │ └── contactname.md │ │ ├── ContactOrganization │ │ │ └── contactorganization.md │ │ ├── contacts.create.md │ │ ├── contacts.find.md │ │ ├── contacts.md │ │ └── parameters │ │ │ ├── contactError.md │ │ │ ├── contactFields.md │ │ │ ├── contactFindOptions.md │ │ │ └── contactSuccess.md │ │ ├── device │ │ ├── device.md │ │ ├── device.name.md │ │ ├── device.phonegap.md │ │ ├── device.platform.md │ │ ├── device.uuid.md │ │ └── device.version.md │ │ ├── events │ │ ├── events.backbutton.md │ │ ├── events.batterycritical.md │ │ ├── events.batterylow.md │ │ ├── events.batterystatus.md │ │ ├── events.deviceready.md │ │ ├── events.endcallbutton.md │ │ ├── events.md │ │ ├── events.menubutton.md │ │ ├── events.offline.md │ │ ├── events.online.md │ │ ├── events.pause.md │ │ ├── events.resume.md │ │ ├── events.searchbutton.md │ │ ├── events.startcallbutton.md │ │ ├── events.volumedownbutton.md │ │ └── events.volumeupbutton.md │ │ ├── file │ │ ├── directoryentry │ │ │ └── directoryentry.md │ │ ├── directoryreader │ │ │ └── directoryreader.md │ │ ├── file.md │ │ ├── fileentry │ │ │ └── fileentry.md │ │ ├── fileerror │ │ │ └── fileerror.md │ │ ├── fileobj │ │ │ └── fileobj.md │ │ ├── filereader │ │ │ └── filereader.md │ │ ├── filesystem │ │ │ └── filesystem.md │ │ ├── filetransfer │ │ │ └── filetransfer.md │ │ ├── filetransfererror │ │ │ └── filetransfererror.md │ │ ├── fileuploadoptions │ │ │ └── fileuploadoptions.md │ │ ├── fileuploadresult │ │ │ └── fileuploadresult.md │ │ ├── filewriter │ │ │ └── filewriter.md │ │ ├── flags │ │ │ └── flags.md │ │ ├── localfilesystem │ │ │ └── localfilesystem.md │ │ └── metadata │ │ │ └── metadata.md │ │ ├── geolocation │ │ ├── Coordinates │ │ │ └── coordinates.md │ │ ├── Position │ │ │ └── position.md │ │ ├── PositionError │ │ │ └── positionError.md │ │ ├── geolocation.clearWatch.md │ │ ├── geolocation.getCurrentPosition.md │ │ ├── geolocation.md │ │ ├── geolocation.watchPosition.md │ │ └── parameters │ │ │ ├── geolocation.options.md │ │ │ ├── geolocationError.md │ │ │ └── geolocationSuccess.md │ │ ├── media │ │ ├── MediaError │ │ │ └── mediaError.md │ │ ├── Parameters │ │ │ └── mediaError.md │ │ ├── capture │ │ │ ├── CaptureCB.md │ │ │ ├── CaptureError.md │ │ │ ├── CaptureErrorCB.md │ │ │ ├── ConfigurationData.md │ │ │ ├── MediaFile.getFormatData.md │ │ │ ├── MediaFile.md │ │ │ ├── MediaFileData.md │ │ │ ├── capture.md │ │ │ ├── captureAudio.md │ │ │ ├── captureAudioOptions.md │ │ │ ├── captureImage.md │ │ │ ├── captureImageOptions.md │ │ │ ├── captureVideo.md │ │ │ └── captureVideoOptions.md │ │ ├── media.getCurrentPosition.md │ │ ├── media.getDuration.md │ │ ├── media.md │ │ ├── media.pause.md │ │ ├── media.play.md │ │ ├── media.release.md │ │ ├── media.seekTo.md │ │ ├── media.startRecord.md │ │ ├── media.stop.md │ │ └── media.stopRecord.md │ │ ├── notification │ │ ├── notification.alert.md │ │ ├── notification.beep.md │ │ ├── notification.confirm.md │ │ ├── notification.md │ │ └── notification.vibrate.md │ │ └── storage │ │ ├── database │ │ └── database.md │ │ ├── localstorage │ │ └── localstorage.md │ │ ├── parameters │ │ ├── display_name.md │ │ ├── name.md │ │ ├── size.md │ │ └── version.md │ │ ├── sqlerror │ │ └── sqlerror.md │ │ ├── sqlresultset │ │ └── sqlresultset.md │ │ ├── sqlresultsetlist │ │ └── sqlresultsetlist.md │ │ ├── sqltransaction │ │ └── sqltransaction.md │ │ ├── storage.md │ │ └── storage.opendatabase.md │ ├── 1.6.0 │ ├── cordova │ │ ├── accelerometer │ │ │ ├── acceleration │ │ │ │ └── acceleration.md │ │ │ ├── accelerometer.clearWatch.md │ │ │ ├── accelerometer.getCurrentAcceleration.md │ │ │ ├── accelerometer.md │ │ │ ├── accelerometer.watchAcceleration.md │ │ │ └── parameters │ │ │ │ ├── accelerometerError.md │ │ │ │ ├── accelerometerOptions.md │ │ │ │ └── accelerometerSuccess.md │ │ ├── camera │ │ │ ├── camera.getPicture.md │ │ │ ├── camera.md │ │ │ └── parameter │ │ │ │ ├── cameraError.md │ │ │ │ ├── cameraOptions.md │ │ │ │ └── cameraSuccess.md │ │ ├── compass │ │ │ ├── compass.clearWatch.md │ │ │ ├── compass.clearWatchFilter.md │ │ │ ├── compass.getCurrentHeading.md │ │ │ ├── compass.md │ │ │ ├── compass.watchHeading.md │ │ │ ├── compass.watchHeadingFilter.md │ │ │ ├── compassError │ │ │ │ └── compassError.md │ │ │ └── parameters │ │ │ │ ├── compassError.md │ │ │ │ ├── compassHeading.md │ │ │ │ ├── compassOptions.md │ │ │ │ └── compassSuccess.md │ │ ├── connection │ │ │ ├── connection.md │ │ │ └── connection.type.md │ │ ├── contacts │ │ │ ├── Contact │ │ │ │ └── contact.md │ │ │ ├── ContactAddress │ │ │ │ └── contactaddress.md │ │ │ ├── ContactError │ │ │ │ └── contactError.md │ │ │ ├── ContactField │ │ │ │ └── contactfield.md │ │ │ ├── ContactFindOptions │ │ │ │ └── contactfindoptions.md │ │ │ ├── ContactName │ │ │ │ └── contactname.md │ │ │ ├── ContactOrganization │ │ │ │ └── contactorganization.md │ │ │ ├── contacts.create.md │ │ │ ├── contacts.find.md │ │ │ ├── contacts.md │ │ │ └── parameters │ │ │ │ ├── contactError.md │ │ │ │ ├── contactFields.md │ │ │ │ ├── contactFindOptions.md │ │ │ │ └── contactSuccess.md │ │ ├── device │ │ │ ├── device.cordova.md │ │ │ ├── device.md │ │ │ ├── device.name.md │ │ │ ├── device.platform.md │ │ │ ├── device.uuid.md │ │ │ └── device.version.md │ │ ├── events │ │ │ ├── events.backbutton.md │ │ │ ├── events.batterycritical.md │ │ │ ├── events.batterylow.md │ │ │ ├── events.batterystatus.md │ │ │ ├── events.deviceready.md │ │ │ ├── events.endcallbutton.md │ │ │ ├── events.md │ │ │ ├── events.menubutton.md │ │ │ ├── events.offline.md │ │ │ ├── events.online.md │ │ │ ├── events.pause.md │ │ │ ├── events.resume.md │ │ │ ├── events.searchbutton.md │ │ │ ├── events.startcallbutton.md │ │ │ ├── events.volumedownbutton.md │ │ │ └── events.volumeupbutton.md │ │ ├── file │ │ │ ├── directoryentry │ │ │ │ └── directoryentry.md │ │ │ ├── directoryreader │ │ │ │ └── directoryreader.md │ │ │ ├── file.md │ │ │ ├── fileentry │ │ │ │ └── fileentry.md │ │ │ ├── fileerror │ │ │ │ └── fileerror.md │ │ │ ├── fileobj │ │ │ │ └── fileobj.md │ │ │ ├── filereader │ │ │ │ └── filereader.md │ │ │ ├── filesystem │ │ │ │ └── filesystem.md │ │ │ ├── filetransfer │ │ │ │ └── filetransfer.md │ │ │ ├── filetransfererror │ │ │ │ └── filetransfererror.md │ │ │ ├── fileuploadoptions │ │ │ │ └── fileuploadoptions.md │ │ │ ├── fileuploadresult │ │ │ │ └── fileuploadresult.md │ │ │ ├── filewriter │ │ │ │ └── filewriter.md │ │ │ ├── flags │ │ │ │ └── flags.md │ │ │ ├── localfilesystem │ │ │ │ └── localfilesystem.md │ │ │ └── metadata │ │ │ │ └── metadata.md │ │ ├── geolocation │ │ │ ├── Coordinates │ │ │ │ └── coordinates.md │ │ │ ├── Position │ │ │ │ └── position.md │ │ │ ├── PositionError │ │ │ │ └── positionError.md │ │ │ ├── geolocation.clearWatch.md │ │ │ ├── geolocation.getCurrentPosition.md │ │ │ ├── geolocation.md │ │ │ ├── geolocation.watchPosition.md │ │ │ └── parameters │ │ │ │ ├── geolocation.options.md │ │ │ │ ├── geolocationError.md │ │ │ │ └── geolocationSuccess.md │ │ ├── media │ │ │ ├── MediaError │ │ │ │ └── mediaError.md │ │ │ ├── Parameters │ │ │ │ └── mediaError.md │ │ │ ├── capture │ │ │ │ ├── CaptureCB.md │ │ │ │ ├── CaptureError.md │ │ │ │ ├── CaptureErrorCB.md │ │ │ │ ├── ConfigurationData.md │ │ │ │ ├── MediaFile.getFormatData.md │ │ │ │ ├── MediaFile.md │ │ │ │ ├── MediaFileData.md │ │ │ │ ├── capture.md │ │ │ │ ├── captureAudio.md │ │ │ │ ├── captureAudioOptions.md │ │ │ │ ├── captureImage.md │ │ │ │ ├── captureImageOptions.md │ │ │ │ ├── captureVideo.md │ │ │ │ └── captureVideoOptions.md │ │ │ ├── media.getCurrentPosition.md │ │ │ ├── media.getDuration.md │ │ │ ├── media.md │ │ │ ├── media.pause.md │ │ │ ├── media.play.md │ │ │ ├── media.release.md │ │ │ ├── media.seekTo.md │ │ │ ├── media.startRecord.md │ │ │ ├── media.stop.md │ │ │ └── media.stopRecord.md │ │ ├── notification │ │ │ ├── notification.alert.md │ │ │ ├── notification.beep.md │ │ │ ├── notification.confirm.md │ │ │ ├── notification.md │ │ │ └── notification.vibrate.md │ │ └── storage │ │ │ ├── database │ │ │ └── database.md │ │ │ ├── localstorage │ │ │ └── localstorage.md │ │ │ ├── parameters │ │ │ ├── display_name.md │ │ │ ├── name.md │ │ │ ├── size.md │ │ │ └── version.md │ │ │ ├── sqlerror │ │ │ └── sqlerror.md │ │ │ ├── sqlresultset │ │ │ └── sqlresultset.md │ │ │ ├── sqlresultsetlist │ │ │ └── sqlresultsetlist.md │ │ │ ├── sqltransaction │ │ │ └── sqltransaction.md │ │ │ ├── storage.md │ │ │ └── storage.opendatabase.md │ ├── guide │ │ ├── getting-started │ │ │ ├── android │ │ │ │ └── index.md │ │ │ ├── blackberry │ │ │ │ └── index.md │ │ │ ├── index.md │ │ │ ├── ios │ │ │ │ └── index.md │ │ │ ├── symbian │ │ │ │ └── index.md │ │ │ ├── webos │ │ │ │ └── index.md │ │ │ └── windows-phone │ │ │ │ └── index.md │ │ └── upgrading │ │ │ ├── blackberry │ │ │ └── index.md │ │ │ └── webos │ │ │ └── index.md │ └── index.md │ ├── 1.6.1 │ ├── cordova │ │ ├── accelerometer │ │ │ ├── acceleration │ │ │ │ └── acceleration.md │ │ │ ├── accelerometer.clearWatch.md │ │ │ ├── accelerometer.getCurrentAcceleration.md │ │ │ ├── accelerometer.md │ │ │ ├── accelerometer.watchAcceleration.md │ │ │ └── parameters │ │ │ │ ├── accelerometerError.md │ │ │ │ ├── accelerometerOptions.md │ │ │ │ └── accelerometerSuccess.md │ │ ├── camera │ │ │ ├── camera.getPicture.md │ │ │ ├── camera.md │ │ │ └── parameter │ │ │ │ ├── cameraError.md │ │ │ │ ├── cameraOptions.md │ │ │ │ └── cameraSuccess.md │ │ ├── compass │ │ │ ├── compass.clearWatch.md │ │ │ ├── compass.clearWatchFilter.md │ │ │ ├── compass.getCurrentHeading.md │ │ │ ├── compass.md │ │ │ ├── compass.watchHeading.md │ │ │ ├── compass.watchHeadingFilter.md │ │ │ ├── compassError │ │ │ │ └── compassError.md │ │ │ └── parameters │ │ │ │ ├── compassError.md │ │ │ │ ├── compassHeading.md │ │ │ │ ├── compassOptions.md │ │ │ │ └── compassSuccess.md │ │ ├── connection │ │ │ ├── connection.md │ │ │ └── connection.type.md │ │ ├── contacts │ │ │ ├── Contact │ │ │ │ └── contact.md │ │ │ ├── ContactAddress │ │ │ │ └── contactaddress.md │ │ │ ├── ContactError │ │ │ │ └── contactError.md │ │ │ ├── ContactField │ │ │ │ └── contactfield.md │ │ │ ├── ContactFindOptions │ │ │ │ └── contactfindoptions.md │ │ │ ├── ContactName │ │ │ │ └── contactname.md │ │ │ ├── ContactOrganization │ │ │ │ └── contactorganization.md │ │ │ ├── contacts.create.md │ │ │ ├── contacts.find.md │ │ │ ├── contacts.md │ │ │ └── parameters │ │ │ │ ├── contactError.md │ │ │ │ ├── contactFields.md │ │ │ │ ├── contactFindOptions.md │ │ │ │ └── contactSuccess.md │ │ ├── device │ │ │ ├── device.cordova.md │ │ │ ├── device.md │ │ │ ├── device.name.md │ │ │ ├── device.platform.md │ │ │ ├── device.uuid.md │ │ │ └── device.version.md │ │ ├── events │ │ │ ├── events.backbutton.md │ │ │ ├── events.batterycritical.md │ │ │ ├── events.batterylow.md │ │ │ ├── events.batterystatus.md │ │ │ ├── events.deviceready.md │ │ │ ├── events.endcallbutton.md │ │ │ ├── events.md │ │ │ ├── events.menubutton.md │ │ │ ├── events.offline.md │ │ │ ├── events.online.md │ │ │ ├── events.pause.md │ │ │ ├── events.resume.md │ │ │ ├── events.searchbutton.md │ │ │ ├── events.startcallbutton.md │ │ │ ├── events.volumedownbutton.md │ │ │ └── events.volumeupbutton.md │ │ ├── file │ │ │ ├── directoryentry │ │ │ │ └── directoryentry.md │ │ │ ├── directoryreader │ │ │ │ └── directoryreader.md │ │ │ ├── file.md │ │ │ ├── fileentry │ │ │ │ └── fileentry.md │ │ │ ├── fileerror │ │ │ │ └── fileerror.md │ │ │ ├── fileobj │ │ │ │ └── fileobj.md │ │ │ ├── filereader │ │ │ │ └── filereader.md │ │ │ ├── filesystem │ │ │ │ └── filesystem.md │ │ │ ├── filetransfer │ │ │ │ └── filetransfer.md │ │ │ ├── filetransfererror │ │ │ │ └── filetransfererror.md │ │ │ ├── fileuploadoptions │ │ │ │ └── fileuploadoptions.md │ │ │ ├── fileuploadresult │ │ │ │ └── fileuploadresult.md │ │ │ ├── filewriter │ │ │ │ └── filewriter.md │ │ │ ├── flags │ │ │ │ └── flags.md │ │ │ ├── localfilesystem │ │ │ │ └── localfilesystem.md │ │ │ └── metadata │ │ │ │ └── metadata.md │ │ ├── geolocation │ │ │ ├── Coordinates │ │ │ │ └── coordinates.md │ │ │ ├── Position │ │ │ │ └── position.md │ │ │ ├── PositionError │ │ │ │ └── positionError.md │ │ │ ├── geolocation.clearWatch.md │ │ │ ├── geolocation.getCurrentPosition.md │ │ │ ├── geolocation.md │ │ │ ├── geolocation.watchPosition.md │ │ │ └── parameters │ │ │ │ ├── geolocation.options.md │ │ │ │ ├── geolocationError.md │ │ │ │ └── geolocationSuccess.md │ │ ├── media │ │ │ ├── MediaError │ │ │ │ └── mediaError.md │ │ │ ├── Parameters │ │ │ │ └── mediaError.md │ │ │ ├── capture │ │ │ │ ├── CaptureCB.md │ │ │ │ ├── CaptureError.md │ │ │ │ ├── CaptureErrorCB.md │ │ │ │ ├── ConfigurationData.md │ │ │ │ ├── MediaFile.getFormatData.md │ │ │ │ ├── MediaFile.md │ │ │ │ ├── MediaFileData.md │ │ │ │ ├── capture.md │ │ │ │ ├── captureAudio.md │ │ │ │ ├── captureAudioOptions.md │ │ │ │ ├── captureImage.md │ │ │ │ ├── captureImageOptions.md │ │ │ │ ├── captureVideo.md │ │ │ │ └── captureVideoOptions.md │ │ │ ├── media.getCurrentPosition.md │ │ │ ├── media.getDuration.md │ │ │ ├── media.md │ │ │ ├── media.pause.md │ │ │ ├── media.play.md │ │ │ ├── media.release.md │ │ │ ├── media.seekTo.md │ │ │ ├── media.startRecord.md │ │ │ ├── media.stop.md │ │ │ └── media.stopRecord.md │ │ ├── notification │ │ │ ├── notification.alert.md │ │ │ ├── notification.beep.md │ │ │ ├── notification.confirm.md │ │ │ ├── notification.md │ │ │ └── notification.vibrate.md │ │ └── storage │ │ │ ├── database │ │ │ └── database.md │ │ │ ├── localstorage │ │ │ └── localstorage.md │ │ │ ├── parameters │ │ │ ├── display_name.md │ │ │ ├── name.md │ │ │ ├── size.md │ │ │ └── version.md │ │ │ ├── sqlerror │ │ │ └── sqlerror.md │ │ │ ├── sqlresultset │ │ │ └── sqlresultset.md │ │ │ ├── sqlresultsetlist │ │ │ └── sqlresultsetlist.md │ │ │ ├── sqltransaction │ │ │ └── sqltransaction.md │ │ │ ├── storage.md │ │ │ └── storage.opendatabase.md │ ├── guide │ │ ├── getting-started │ │ │ ├── android │ │ │ │ └── index.md │ │ │ ├── blackberry │ │ │ │ └── index.md │ │ │ ├── index.md │ │ │ ├── ios │ │ │ │ └── index.md │ │ │ ├── symbian │ │ │ │ └── index.md │ │ │ ├── webos │ │ │ │ └── index.md │ │ │ └── windows-phone │ │ │ │ └── index.md │ │ └── upgrading │ │ │ ├── blackberry │ │ │ └── index.md │ │ │ └── webos │ │ │ └── index.md │ └── index.md │ ├── 1.7.0 │ ├── cordova │ │ ├── accelerometer │ │ │ ├── acceleration │ │ │ │ └── acceleration.md │ │ │ ├── accelerometer.clearWatch.md │ │ │ ├── accelerometer.getCurrentAcceleration.md │ │ │ ├── accelerometer.md │ │ │ ├── accelerometer.watchAcceleration.md │ │ │ └── parameters │ │ │ │ ├── accelerometerError.md │ │ │ │ ├── accelerometerOptions.md │ │ │ │ └── accelerometerSuccess.md │ │ ├── camera │ │ │ ├── camera.getPicture.md │ │ │ ├── camera.md │ │ │ └── parameter │ │ │ │ ├── cameraError.md │ │ │ │ ├── cameraOptions.md │ │ │ │ └── cameraSuccess.md │ │ ├── compass │ │ │ ├── compass.clearWatch.md │ │ │ ├── compass.clearWatchFilter.md │ │ │ ├── compass.getCurrentHeading.md │ │ │ ├── compass.md │ │ │ ├── compass.watchHeading.md │ │ │ ├── compass.watchHeadingFilter.md │ │ │ ├── compassError │ │ │ │ └── compassError.md │ │ │ └── parameters │ │ │ │ ├── compassError.md │ │ │ │ ├── compassHeading.md │ │ │ │ ├── compassOptions.md │ │ │ │ └── compassSuccess.md │ │ ├── connection │ │ │ ├── connection.md │ │ │ └── connection.type.md │ │ ├── contacts │ │ │ ├── Contact │ │ │ │ └── contact.md │ │ │ ├── ContactAddress │ │ │ │ └── contactaddress.md │ │ │ ├── ContactError │ │ │ │ └── contactError.md │ │ │ ├── ContactField │ │ │ │ └── contactfield.md │ │ │ ├── ContactFindOptions │ │ │ │ └── contactfindoptions.md │ │ │ ├── ContactName │ │ │ │ └── contactname.md │ │ │ ├── ContactOrganization │ │ │ │ └── contactorganization.md │ │ │ ├── contacts.create.md │ │ │ ├── contacts.find.md │ │ │ ├── contacts.md │ │ │ └── parameters │ │ │ │ ├── contactError.md │ │ │ │ ├── contactFields.md │ │ │ │ ├── contactFindOptions.md │ │ │ │ └── contactSuccess.md │ │ ├── device │ │ │ ├── device.cordova.md │ │ │ ├── device.md │ │ │ ├── device.name.md │ │ │ ├── device.platform.md │ │ │ ├── device.uuid.md │ │ │ └── device.version.md │ │ ├── events │ │ │ ├── events.backbutton.md │ │ │ ├── events.batterycritical.md │ │ │ ├── events.batterylow.md │ │ │ ├── events.batterystatus.md │ │ │ ├── events.deviceready.md │ │ │ ├── events.endcallbutton.md │ │ │ ├── events.md │ │ │ ├── events.menubutton.md │ │ │ ├── events.offline.md │ │ │ ├── events.online.md │ │ │ ├── events.pause.md │ │ │ ├── events.resume.md │ │ │ ├── events.searchbutton.md │ │ │ ├── events.startcallbutton.md │ │ │ ├── events.volumedownbutton.md │ │ │ └── events.volumeupbutton.md │ │ ├── file │ │ │ ├── directoryentry │ │ │ │ └── directoryentry.md │ │ │ ├── directoryreader │ │ │ │ └── directoryreader.md │ │ │ ├── file.md │ │ │ ├── fileentry │ │ │ │ └── fileentry.md │ │ │ ├── fileerror │ │ │ │ └── fileerror.md │ │ │ ├── fileobj │ │ │ │ └── fileobj.md │ │ │ ├── filereader │ │ │ │ └── filereader.md │ │ │ ├── filesystem │ │ │ │ └── filesystem.md │ │ │ ├── filetransfer │ │ │ │ └── filetransfer.md │ │ │ ├── filetransfererror │ │ │ │ └── filetransfererror.md │ │ │ ├── fileuploadoptions │ │ │ │ └── fileuploadoptions.md │ │ │ ├── fileuploadresult │ │ │ │ └── fileuploadresult.md │ │ │ ├── filewriter │ │ │ │ └── filewriter.md │ │ │ ├── flags │ │ │ │ └── flags.md │ │ │ ├── localfilesystem │ │ │ │ └── localfilesystem.md │ │ │ └── metadata │ │ │ │ └── metadata.md │ │ ├── geolocation │ │ │ ├── Coordinates │ │ │ │ └── coordinates.md │ │ │ ├── Position │ │ │ │ └── position.md │ │ │ ├── PositionError │ │ │ │ └── positionError.md │ │ │ ├── geolocation.clearWatch.md │ │ │ ├── geolocation.getCurrentPosition.md │ │ │ ├── geolocation.md │ │ │ ├── geolocation.watchPosition.md │ │ │ └── parameters │ │ │ │ ├── geolocation.options.md │ │ │ │ ├── geolocationError.md │ │ │ │ └── geolocationSuccess.md │ │ ├── media │ │ │ ├── MediaError │ │ │ │ └── mediaError.md │ │ │ ├── Parameters │ │ │ │ └── mediaError.md │ │ │ ├── capture │ │ │ │ ├── CaptureCB.md │ │ │ │ ├── CaptureError.md │ │ │ │ ├── CaptureErrorCB.md │ │ │ │ ├── ConfigurationData.md │ │ │ │ ├── MediaFile.getFormatData.md │ │ │ │ ├── MediaFile.md │ │ │ │ ├── MediaFileData.md │ │ │ │ ├── capture.md │ │ │ │ ├── captureAudio.md │ │ │ │ ├── captureAudioOptions.md │ │ │ │ ├── captureImage.md │ │ │ │ ├── captureImageOptions.md │ │ │ │ ├── captureVideo.md │ │ │ │ └── captureVideoOptions.md │ │ │ ├── media.getCurrentPosition.md │ │ │ ├── media.getDuration.md │ │ │ ├── media.md │ │ │ ├── media.pause.md │ │ │ ├── media.play.md │ │ │ ├── media.release.md │ │ │ ├── media.seekTo.md │ │ │ ├── media.startRecord.md │ │ │ ├── media.stop.md │ │ │ └── media.stopRecord.md │ │ ├── notification │ │ │ ├── notification.alert.md │ │ │ ├── notification.beep.md │ │ │ ├── notification.confirm.md │ │ │ ├── notification.md │ │ │ └── notification.vibrate.md │ │ └── storage │ │ │ ├── database │ │ │ └── database.md │ │ │ ├── localstorage │ │ │ └── localstorage.md │ │ │ ├── parameters │ │ │ ├── display_name.md │ │ │ ├── name.md │ │ │ ├── size.md │ │ │ └── version.md │ │ │ ├── sqlerror │ │ │ └── sqlerror.md │ │ │ ├── sqlresultset │ │ │ └── sqlresultset.md │ │ │ ├── sqlresultsetlist │ │ │ └── sqlresultsetlist.md │ │ │ ├── sqltransaction │ │ │ └── sqltransaction.md │ │ │ ├── storage.md │ │ │ └── storage.opendatabase.md │ ├── guide │ │ ├── getting-started │ │ │ ├── android │ │ │ │ └── index.md │ │ │ ├── bada │ │ │ │ └── index.md │ │ │ ├── blackberry │ │ │ │ └── index.md │ │ │ ├── index.md │ │ │ ├── ios │ │ │ │ └── index.md │ │ │ ├── symbian │ │ │ │ └── index.md │ │ │ ├── webos │ │ │ │ └── index.md │ │ │ └── windows-phone │ │ │ │ └── index.md │ │ └── upgrading │ │ │ ├── blackberry │ │ │ └── index.md │ │ │ └── webos │ │ │ └── index.md │ └── index.md │ ├── 1.8.0 │ ├── cordova │ │ ├── accelerometer │ │ │ ├── acceleration │ │ │ │ └── acceleration.md │ │ │ ├── accelerometer.clearWatch.md │ │ │ ├── accelerometer.getCurrentAcceleration.md │ │ │ ├── accelerometer.md │ │ │ ├── accelerometer.watchAcceleration.md │ │ │ └── parameters │ │ │ │ ├── accelerometerError.md │ │ │ │ ├── accelerometerOptions.md │ │ │ │ └── accelerometerSuccess.md │ │ ├── camera │ │ │ ├── camera.getPicture.md │ │ │ ├── camera.md │ │ │ └── parameter │ │ │ │ ├── CameraPopoverOptions.md │ │ │ │ ├── cameraError.md │ │ │ │ ├── cameraOptions.md │ │ │ │ └── cameraSuccess.md │ │ ├── compass │ │ │ ├── compass.clearWatch.md │ │ │ ├── compass.clearWatchFilter.md │ │ │ ├── compass.getCurrentHeading.md │ │ │ ├── compass.md │ │ │ ├── compass.watchHeading.md │ │ │ ├── compass.watchHeadingFilter.md │ │ │ ├── compassError │ │ │ │ └── compassError.md │ │ │ └── parameters │ │ │ │ ├── compassError.md │ │ │ │ ├── compassHeading.md │ │ │ │ ├── compassOptions.md │ │ │ │ └── compassSuccess.md │ │ ├── connection │ │ │ ├── connection.md │ │ │ └── connection.type.md │ │ ├── contacts │ │ │ ├── Contact │ │ │ │ └── contact.md │ │ │ ├── ContactAddress │ │ │ │ └── contactaddress.md │ │ │ ├── ContactError │ │ │ │ └── contactError.md │ │ │ ├── ContactField │ │ │ │ └── contactfield.md │ │ │ ├── ContactFindOptions │ │ │ │ └── contactfindoptions.md │ │ │ ├── ContactName │ │ │ │ └── contactname.md │ │ │ ├── ContactOrganization │ │ │ │ └── contactorganization.md │ │ │ ├── contacts.create.md │ │ │ ├── contacts.find.md │ │ │ ├── contacts.md │ │ │ └── parameters │ │ │ │ ├── contactError.md │ │ │ │ ├── contactFields.md │ │ │ │ ├── contactFindOptions.md │ │ │ │ └── contactSuccess.md │ │ ├── device │ │ │ ├── device.cordova.md │ │ │ ├── device.md │ │ │ ├── device.name.md │ │ │ ├── device.platform.md │ │ │ ├── device.uuid.md │ │ │ └── device.version.md │ │ ├── events │ │ │ ├── events.backbutton.md │ │ │ ├── events.batterycritical.md │ │ │ ├── events.batterylow.md │ │ │ ├── events.batterystatus.md │ │ │ ├── events.deviceready.md │ │ │ ├── events.endcallbutton.md │ │ │ ├── events.md │ │ │ ├── events.menubutton.md │ │ │ ├── events.offline.md │ │ │ ├── events.online.md │ │ │ ├── events.pause.md │ │ │ ├── events.resume.md │ │ │ ├── events.searchbutton.md │ │ │ ├── events.startcallbutton.md │ │ │ ├── events.volumedownbutton.md │ │ │ └── events.volumeupbutton.md │ │ ├── file │ │ │ ├── directoryentry │ │ │ │ └── directoryentry.md │ │ │ ├── directoryreader │ │ │ │ └── directoryreader.md │ │ │ ├── file.md │ │ │ ├── fileentry │ │ │ │ └── fileentry.md │ │ │ ├── fileerror │ │ │ │ └── fileerror.md │ │ │ ├── fileobj │ │ │ │ └── fileobj.md │ │ │ ├── filereader │ │ │ │ └── filereader.md │ │ │ ├── filesystem │ │ │ │ └── filesystem.md │ │ │ ├── filetransfer │ │ │ │ └── filetransfer.md │ │ │ ├── filetransfererror │ │ │ │ └── filetransfererror.md │ │ │ ├── fileuploadoptions │ │ │ │ └── fileuploadoptions.md │ │ │ ├── fileuploadresult │ │ │ │ └── fileuploadresult.md │ │ │ ├── filewriter │ │ │ │ └── filewriter.md │ │ │ ├── flags │ │ │ │ └── flags.md │ │ │ ├── localfilesystem │ │ │ │ └── localfilesystem.md │ │ │ └── metadata │ │ │ │ └── metadata.md │ │ ├── geolocation │ │ │ ├── Coordinates │ │ │ │ └── coordinates.md │ │ │ ├── Position │ │ │ │ └── position.md │ │ │ ├── PositionError │ │ │ │ └── positionError.md │ │ │ ├── geolocation.clearWatch.md │ │ │ ├── geolocation.getCurrentPosition.md │ │ │ ├── geolocation.md │ │ │ ├── geolocation.watchPosition.md │ │ │ └── parameters │ │ │ │ ├── geolocation.options.md │ │ │ │ ├── geolocationError.md │ │ │ │ └── geolocationSuccess.md │ │ ├── media │ │ │ ├── MediaError │ │ │ │ └── mediaError.md │ │ │ ├── Parameters │ │ │ │ └── mediaError.md │ │ │ ├── capture │ │ │ │ ├── CaptureCB.md │ │ │ │ ├── CaptureError.md │ │ │ │ ├── CaptureErrorCB.md │ │ │ │ ├── ConfigurationData.md │ │ │ │ ├── MediaFile.getFormatData.md │ │ │ │ ├── MediaFile.md │ │ │ │ ├── MediaFileData.md │ │ │ │ ├── capture.md │ │ │ │ ├── captureAudio.md │ │ │ │ ├── captureAudioOptions.md │ │ │ │ ├── captureImage.md │ │ │ │ ├── captureImageOptions.md │ │ │ │ ├── captureVideo.md │ │ │ │ └── captureVideoOptions.md │ │ │ ├── media.getCurrentPosition.md │ │ │ ├── media.getDuration.md │ │ │ ├── media.md │ │ │ ├── media.pause.md │ │ │ ├── media.play.md │ │ │ ├── media.release.md │ │ │ ├── media.seekTo.md │ │ │ ├── media.startRecord.md │ │ │ ├── media.stop.md │ │ │ └── media.stopRecord.md │ │ ├── notification │ │ │ ├── notification.alert.md │ │ │ ├── notification.beep.md │ │ │ ├── notification.confirm.md │ │ │ ├── notification.md │ │ │ └── notification.vibrate.md │ │ └── storage │ │ │ ├── database │ │ │ └── database.md │ │ │ ├── localstorage │ │ │ └── localstorage.md │ │ │ ├── parameters │ │ │ ├── display_name.md │ │ │ ├── name.md │ │ │ ├── size.md │ │ │ └── version.md │ │ │ ├── sqlerror │ │ │ └── sqlerror.md │ │ │ ├── sqlresultset │ │ │ └── sqlresultset.md │ │ │ ├── sqlresultsetlist │ │ │ └── sqlresultsetlist.md │ │ │ ├── sqltransaction │ │ │ └── sqltransaction.md │ │ │ ├── storage.md │ │ │ └── storage.opendatabase.md │ ├── guide │ │ ├── getting-started │ │ │ ├── android │ │ │ │ └── index.md │ │ │ ├── bada │ │ │ │ └── index.md │ │ │ ├── blackberry │ │ │ │ └── index.md │ │ │ ├── index.md │ │ │ ├── ios │ │ │ │ └── index.md │ │ │ ├── symbian │ │ │ │ └── index.md │ │ │ ├── webos │ │ │ │ └── index.md │ │ │ └── windows-phone │ │ │ │ └── index.md │ │ ├── upgrading │ │ │ ├── android │ │ │ │ └── index.md │ │ │ ├── bada │ │ │ │ └── index.md │ │ │ ├── blackberry │ │ │ │ └── index.md │ │ │ ├── index.md │ │ │ ├── ios │ │ │ │ └── index.md │ │ │ ├── symbian │ │ │ │ └── index.md │ │ │ ├── webos │ │ │ │ └── index.md │ │ │ └── windows-phone │ │ │ │ └── index.md │ │ └── whitelist │ │ │ └── index.md │ └── index.md │ ├── 1.8.1 │ ├── cordova │ │ ├── accelerometer │ │ │ ├── acceleration │ │ │ │ └── acceleration.md │ │ │ ├── accelerometer.clearWatch.md │ │ │ ├── accelerometer.getCurrentAcceleration.md │ │ │ ├── accelerometer.md │ │ │ ├── accelerometer.watchAcceleration.md │ │ │ └── parameters │ │ │ │ ├── accelerometerError.md │ │ │ │ ├── accelerometerOptions.md │ │ │ │ └── accelerometerSuccess.md │ │ ├── camera │ │ │ ├── camera.getPicture.md │ │ │ ├── camera.md │ │ │ └── parameter │ │ │ │ ├── CameraPopoverOptions.md │ │ │ │ ├── cameraError.md │ │ │ │ ├── cameraOptions.md │ │ │ │ └── cameraSuccess.md │ │ ├── compass │ │ │ ├── compass.clearWatch.md │ │ │ ├── compass.clearWatchFilter.md │ │ │ ├── compass.getCurrentHeading.md │ │ │ ├── compass.md │ │ │ ├── compass.watchHeading.md │ │ │ ├── compass.watchHeadingFilter.md │ │ │ ├── compassError │ │ │ │ └── compassError.md │ │ │ └── parameters │ │ │ │ ├── compassError.md │ │ │ │ ├── compassHeading.md │ │ │ │ ├── compassOptions.md │ │ │ │ └── compassSuccess.md │ │ ├── connection │ │ │ ├── connection.md │ │ │ └── connection.type.md │ │ ├── contacts │ │ │ ├── Contact │ │ │ │ └── contact.md │ │ │ ├── ContactAddress │ │ │ │ └── contactaddress.md │ │ │ ├── ContactError │ │ │ │ └── contactError.md │ │ │ ├── ContactField │ │ │ │ └── contactfield.md │ │ │ ├── ContactFindOptions │ │ │ │ └── contactfindoptions.md │ │ │ ├── ContactName │ │ │ │ └── contactname.md │ │ │ ├── ContactOrganization │ │ │ │ └── contactorganization.md │ │ │ ├── contacts.create.md │ │ │ ├── contacts.find.md │ │ │ ├── contacts.md │ │ │ └── parameters │ │ │ │ ├── contactError.md │ │ │ │ ├── contactFields.md │ │ │ │ ├── contactFindOptions.md │ │ │ │ └── contactSuccess.md │ │ ├── device │ │ │ ├── device.cordova.md │ │ │ ├── device.md │ │ │ ├── device.name.md │ │ │ ├── device.platform.md │ │ │ ├── device.uuid.md │ │ │ └── device.version.md │ │ ├── events │ │ │ ├── events.backbutton.md │ │ │ ├── events.batterycritical.md │ │ │ ├── events.batterylow.md │ │ │ ├── events.batterystatus.md │ │ │ ├── events.deviceready.md │ │ │ ├── events.endcallbutton.md │ │ │ ├── events.md │ │ │ ├── events.menubutton.md │ │ │ ├── events.offline.md │ │ │ ├── events.online.md │ │ │ ├── events.pause.md │ │ │ ├── events.resume.md │ │ │ ├── events.searchbutton.md │ │ │ ├── events.startcallbutton.md │ │ │ ├── events.volumedownbutton.md │ │ │ └── events.volumeupbutton.md │ │ ├── file │ │ │ ├── directoryentry │ │ │ │ └── directoryentry.md │ │ │ ├── directoryreader │ │ │ │ └── directoryreader.md │ │ │ ├── file.md │ │ │ ├── fileentry │ │ │ │ └── fileentry.md │ │ │ ├── fileerror │ │ │ │ └── fileerror.md │ │ │ ├── fileobj │ │ │ │ └── fileobj.md │ │ │ ├── filereader │ │ │ │ └── filereader.md │ │ │ ├── filesystem │ │ │ │ └── filesystem.md │ │ │ ├── filetransfer │ │ │ │ └── filetransfer.md │ │ │ ├── filetransfererror │ │ │ │ └── filetransfererror.md │ │ │ ├── fileuploadoptions │ │ │ │ └── fileuploadoptions.md │ │ │ ├── fileuploadresult │ │ │ │ └── fileuploadresult.md │ │ │ ├── filewriter │ │ │ │ └── filewriter.md │ │ │ ├── flags │ │ │ │ └── flags.md │ │ │ ├── localfilesystem │ │ │ │ └── localfilesystem.md │ │ │ └── metadata │ │ │ │ └── metadata.md │ │ ├── geolocation │ │ │ ├── Coordinates │ │ │ │ └── coordinates.md │ │ │ ├── Position │ │ │ │ └── position.md │ │ │ ├── PositionError │ │ │ │ └── positionError.md │ │ │ ├── geolocation.clearWatch.md │ │ │ ├── geolocation.getCurrentPosition.md │ │ │ ├── geolocation.md │ │ │ ├── geolocation.watchPosition.md │ │ │ └── parameters │ │ │ │ ├── geolocation.options.md │ │ │ │ ├── geolocationError.md │ │ │ │ └── geolocationSuccess.md │ │ ├── media │ │ │ ├── MediaError │ │ │ │ └── mediaError.md │ │ │ ├── Parameters │ │ │ │ └── mediaError.md │ │ │ ├── capture │ │ │ │ ├── CaptureCB.md │ │ │ │ ├── CaptureError.md │ │ │ │ ├── CaptureErrorCB.md │ │ │ │ ├── ConfigurationData.md │ │ │ │ ├── MediaFile.getFormatData.md │ │ │ │ ├── MediaFile.md │ │ │ │ ├── MediaFileData.md │ │ │ │ ├── capture.md │ │ │ │ ├── captureAudio.md │ │ │ │ ├── captureAudioOptions.md │ │ │ │ ├── captureImage.md │ │ │ │ ├── captureImageOptions.md │ │ │ │ ├── captureVideo.md │ │ │ │ └── captureVideoOptions.md │ │ │ ├── media.getCurrentPosition.md │ │ │ ├── media.getDuration.md │ │ │ ├── media.md │ │ │ ├── media.pause.md │ │ │ ├── media.play.md │ │ │ ├── media.release.md │ │ │ ├── media.seekTo.md │ │ │ ├── media.startRecord.md │ │ │ ├── media.stop.md │ │ │ └── media.stopRecord.md │ │ ├── notification │ │ │ ├── notification.alert.md │ │ │ ├── notification.beep.md │ │ │ ├── notification.confirm.md │ │ │ ├── notification.md │ │ │ └── notification.vibrate.md │ │ └── storage │ │ │ ├── database │ │ │ └── database.md │ │ │ ├── localstorage │ │ │ └── localstorage.md │ │ │ ├── parameters │ │ │ ├── display_name.md │ │ │ ├── name.md │ │ │ ├── size.md │ │ │ └── version.md │ │ │ ├── sqlerror │ │ │ └── sqlerror.md │ │ │ ├── sqlresultset │ │ │ └── sqlresultset.md │ │ │ ├── sqlresultsetlist │ │ │ └── sqlresultsetlist.md │ │ │ ├── sqltransaction │ │ │ └── sqltransaction.md │ │ │ ├── storage.md │ │ │ └── storage.opendatabase.md │ ├── guide │ │ ├── getting-started │ │ │ ├── android │ │ │ │ └── index.md │ │ │ ├── bada │ │ │ │ └── index.md │ │ │ ├── blackberry │ │ │ │ └── index.md │ │ │ ├── index.md │ │ │ ├── ios │ │ │ │ └── index.md │ │ │ ├── symbian │ │ │ │ └── index.md │ │ │ ├── webos │ │ │ │ └── index.md │ │ │ └── windows-phone │ │ │ │ └── index.md │ │ ├── upgrading │ │ │ ├── android │ │ │ │ └── index.md │ │ │ ├── bada │ │ │ │ └── index.md │ │ │ ├── blackberry │ │ │ │ └── index.md │ │ │ ├── index.md │ │ │ ├── ios │ │ │ │ └── index.md │ │ │ ├── symbian │ │ │ │ └── index.md │ │ │ ├── webos │ │ │ │ └── index.md │ │ │ └── windows-phone │ │ │ │ └── index.md │ │ └── whitelist │ │ │ └── index.md │ └── index.md │ ├── 1.9.0 │ ├── cordova │ │ ├── accelerometer │ │ │ ├── acceleration │ │ │ │ └── acceleration.md │ │ │ ├── accelerometer.clearWatch.md │ │ │ ├── accelerometer.getCurrentAcceleration.md │ │ │ ├── accelerometer.md │ │ │ ├── accelerometer.watchAcceleration.md │ │ │ └── parameters │ │ │ │ ├── accelerometerError.md │ │ │ │ ├── accelerometerOptions.md │ │ │ │ └── accelerometerSuccess.md │ │ ├── camera │ │ │ ├── camera.cleanup.md │ │ │ ├── camera.getPicture.md │ │ │ ├── camera.md │ │ │ └── parameter │ │ │ │ ├── CameraPopoverOptions.md │ │ │ │ ├── cameraError.md │ │ │ │ ├── cameraOptions.md │ │ │ │ └── cameraSuccess.md │ │ ├── compass │ │ │ ├── compass.clearWatch.md │ │ │ ├── compass.clearWatchFilter.md │ │ │ ├── compass.getCurrentHeading.md │ │ │ ├── compass.md │ │ │ ├── compass.watchHeading.md │ │ │ ├── compass.watchHeadingFilter.md │ │ │ ├── compassError │ │ │ │ └── compassError.md │ │ │ └── parameters │ │ │ │ ├── compassError.md │ │ │ │ ├── compassHeading.md │ │ │ │ ├── compassOptions.md │ │ │ │ └── compassSuccess.md │ │ ├── connection │ │ │ ├── connection.md │ │ │ └── connection.type.md │ │ ├── contacts │ │ │ ├── Contact │ │ │ │ └── contact.md │ │ │ ├── ContactAddress │ │ │ │ └── contactaddress.md │ │ │ ├── ContactError │ │ │ │ └── contactError.md │ │ │ ├── ContactField │ │ │ │ └── contactfield.md │ │ │ ├── ContactFindOptions │ │ │ │ └── contactfindoptions.md │ │ │ ├── ContactName │ │ │ │ └── contactname.md │ │ │ ├── ContactOrganization │ │ │ │ └── contactorganization.md │ │ │ ├── contacts.create.md │ │ │ ├── contacts.find.md │ │ │ ├── contacts.md │ │ │ └── parameters │ │ │ │ ├── contactError.md │ │ │ │ ├── contactFields.md │ │ │ │ ├── contactFindOptions.md │ │ │ │ └── contactSuccess.md │ │ ├── device │ │ │ ├── device.cordova.md │ │ │ ├── device.md │ │ │ ├── device.name.md │ │ │ ├── device.platform.md │ │ │ ├── device.uuid.md │ │ │ └── device.version.md │ │ ├── events │ │ │ ├── events.backbutton.md │ │ │ ├── events.batterycritical.md │ │ │ ├── events.batterylow.md │ │ │ ├── events.batterystatus.md │ │ │ ├── events.deviceready.md │ │ │ ├── events.endcallbutton.md │ │ │ ├── events.md │ │ │ ├── events.menubutton.md │ │ │ ├── events.offline.md │ │ │ ├── events.online.md │ │ │ ├── events.pause.md │ │ │ ├── events.resume.md │ │ │ ├── events.searchbutton.md │ │ │ ├── events.startcallbutton.md │ │ │ ├── events.volumedownbutton.md │ │ │ └── events.volumeupbutton.md │ │ ├── file │ │ │ ├── directoryentry │ │ │ │ └── directoryentry.md │ │ │ ├── directoryreader │ │ │ │ └── directoryreader.md │ │ │ ├── file.md │ │ │ ├── fileentry │ │ │ │ └── fileentry.md │ │ │ ├── fileerror │ │ │ │ └── fileerror.md │ │ │ ├── fileobj │ │ │ │ └── fileobj.md │ │ │ ├── filereader │ │ │ │ └── filereader.md │ │ │ ├── filesystem │ │ │ │ └── filesystem.md │ │ │ ├── filetransfer │ │ │ │ └── filetransfer.md │ │ │ ├── filetransfererror │ │ │ │ └── filetransfererror.md │ │ │ ├── fileuploadoptions │ │ │ │ └── fileuploadoptions.md │ │ │ ├── fileuploadresult │ │ │ │ └── fileuploadresult.md │ │ │ ├── filewriter │ │ │ │ └── filewriter.md │ │ │ ├── flags │ │ │ │ └── flags.md │ │ │ ├── localfilesystem │ │ │ │ └── localfilesystem.md │ │ │ └── metadata │ │ │ │ └── metadata.md │ │ ├── geolocation │ │ │ ├── Coordinates │ │ │ │ └── coordinates.md │ │ │ ├── Position │ │ │ │ └── position.md │ │ │ ├── PositionError │ │ │ │ └── positionError.md │ │ │ ├── geolocation.clearWatch.md │ │ │ ├── geolocation.getCurrentPosition.md │ │ │ ├── geolocation.md │ │ │ ├── geolocation.watchPosition.md │ │ │ └── parameters │ │ │ │ ├── geolocation.options.md │ │ │ │ ├── geolocationError.md │ │ │ │ └── geolocationSuccess.md │ │ ├── media │ │ │ ├── MediaError │ │ │ │ └── mediaError.md │ │ │ ├── Parameters │ │ │ │ └── mediaError.md │ │ │ ├── capture │ │ │ │ ├── CaptureCB.md │ │ │ │ ├── CaptureError.md │ │ │ │ ├── CaptureErrorCB.md │ │ │ │ ├── ConfigurationData.md │ │ │ │ ├── MediaFile.getFormatData.md │ │ │ │ ├── MediaFile.md │ │ │ │ ├── MediaFileData.md │ │ │ │ ├── capture.md │ │ │ │ ├── captureAudio.md │ │ │ │ ├── captureAudioOptions.md │ │ │ │ ├── captureImage.md │ │ │ │ ├── captureImageOptions.md │ │ │ │ ├── captureVideo.md │ │ │ │ └── captureVideoOptions.md │ │ │ ├── media.getCurrentPosition.md │ │ │ ├── media.getDuration.md │ │ │ ├── media.md │ │ │ ├── media.pause.md │ │ │ ├── media.play.md │ │ │ ├── media.release.md │ │ │ ├── media.seekTo.md │ │ │ ├── media.startRecord.md │ │ │ ├── media.stop.md │ │ │ └── media.stopRecord.md │ │ ├── notification │ │ │ ├── notification.alert.md │ │ │ ├── notification.beep.md │ │ │ ├── notification.confirm.md │ │ │ ├── notification.md │ │ │ └── notification.vibrate.md │ │ └── storage │ │ │ ├── database │ │ │ └── database.md │ │ │ ├── localstorage │ │ │ └── localstorage.md │ │ │ ├── parameters │ │ │ ├── display_name.md │ │ │ ├── name.md │ │ │ ├── size.md │ │ │ └── version.md │ │ │ ├── sqlerror │ │ │ └── sqlerror.md │ │ │ ├── sqlresultset │ │ │ └── sqlresultset.md │ │ │ ├── sqlresultsetlist │ │ │ └── sqlresultsetlist.md │ │ │ ├── sqltransaction │ │ │ └── sqltransaction.md │ │ │ ├── storage.md │ │ │ └── storage.opendatabase.md │ ├── guide │ │ ├── command-line │ │ │ └── index.md │ │ ├── cordova-webview │ │ │ ├── android.md │ │ │ ├── index.md │ │ │ └── ios.md │ │ ├── getting-started │ │ │ ├── android │ │ │ │ └── index.md │ │ │ ├── bada │ │ │ │ └── index.md │ │ │ ├── blackberry │ │ │ │ └── index.md │ │ │ ├── index.md │ │ │ ├── ios │ │ │ │ └── index.md │ │ │ ├── symbian │ │ │ │ └── index.md │ │ │ ├── webos │ │ │ │ └── index.md │ │ │ └── windows-phone │ │ │ │ └── index.md │ │ ├── upgrading │ │ │ ├── android │ │ │ │ └── index.md │ │ │ ├── bada │ │ │ │ └── index.md │ │ │ ├── blackberry │ │ │ │ └── index.md │ │ │ ├── index.md │ │ │ ├── ios │ │ │ │ └── index.md │ │ │ ├── symbian │ │ │ │ └── index.md │ │ │ ├── webos │ │ │ │ └── index.md │ │ │ └── windows-phone │ │ │ │ └── index.md │ │ └── whitelist │ │ │ └── index.md │ └── index.md │ ├── 10.x │ ├── config_ref │ │ ├── images.md │ │ └── index.md │ ├── cordova │ │ ├── events │ │ │ └── events.md │ │ └── storage │ │ │ └── storage.md │ ├── guide │ │ ├── appdev │ │ │ ├── allowlist │ │ │ │ └── index.md │ │ │ ├── hooks │ │ │ │ └── index.md │ │ │ ├── privacy │ │ │ │ └── index.md │ │ │ └── security │ │ │ │ └── index.md │ │ ├── cli │ │ │ ├── index.md │ │ │ └── template.md │ │ ├── hybrid │ │ │ ├── plugins │ │ │ │ └── index.md │ │ │ └── webviews │ │ │ │ └── index.md │ │ ├── next │ │ │ └── index.md │ │ ├── overview │ │ │ └── index.md │ │ ├── platforms │ │ │ ├── android │ │ │ │ ├── index.md │ │ │ │ ├── plugin.md │ │ │ │ ├── upgrade.md │ │ │ │ └── webview.md │ │ │ ├── electron │ │ │ │ └── index.md │ │ │ ├── ios │ │ │ │ ├── index.md │ │ │ │ ├── plugin.md │ │ │ │ ├── upgrade.md │ │ │ │ └── webview.md │ │ │ ├── osx │ │ │ │ ├── config.md │ │ │ │ ├── index.md │ │ │ │ └── plugin.md │ │ │ └── windows │ │ │ │ ├── index.md │ │ │ │ ├── plugin.md │ │ │ │ └── upgrade.md │ │ └── support │ │ │ └── index.md │ ├── index.md │ ├── platform_pinning │ │ └── index.md │ ├── platform_plugin_versioning_ref │ │ └── index.md │ ├── plugin_ref │ │ ├── plugman.md │ │ └── spec.md │ └── reference │ │ ├── cordova-cli │ │ └── index.md │ │ ├── cordova-plugin-battery-status │ │ └── index.md │ │ ├── cordova-plugin-camera │ │ └── index.md │ │ ├── cordova-plugin-device │ │ └── index.md │ │ ├── cordova-plugin-dialogs │ │ └── index.md │ │ ├── cordova-plugin-file │ │ └── index.md │ │ ├── cordova-plugin-geolocation │ │ └── index.md │ │ ├── cordova-plugin-inappbrowser │ │ └── index.md │ │ ├── cordova-plugin-media-capture │ │ └── index.md │ │ ├── cordova-plugin-media │ │ └── index.md │ │ ├── cordova-plugin-network-information │ │ └── index.md │ │ ├── cordova-plugin-screen-orientation │ │ └── index.md │ │ ├── cordova-plugin-splashscreen │ │ └── index.md │ │ ├── cordova-plugin-statusbar │ │ └── index.md │ │ └── cordova-plugin-vibration │ │ └── index.md │ ├── 11.x │ ├── config_ref │ │ ├── images.md │ │ └── index.md │ ├── cordova │ │ ├── events │ │ │ └── events.md │ │ └── storage │ │ │ └── storage.md │ ├── core │ │ └── features │ │ │ └── splashscreen │ │ │ └── index.md │ ├── guide │ │ ├── appdev │ │ │ ├── allowlist │ │ │ │ └── index.md │ │ │ ├── hooks │ │ │ │ └── index.md │ │ │ ├── privacy │ │ │ │ └── index.md │ │ │ └── security │ │ │ │ └── index.md │ │ ├── cli │ │ │ ├── index.md │ │ │ └── template.md │ │ ├── hybrid │ │ │ ├── plugins │ │ │ │ └── index.md │ │ │ └── webviews │ │ │ │ └── index.md │ │ ├── next │ │ │ └── index.md │ │ ├── overview │ │ │ └── index.md │ │ ├── platforms │ │ │ ├── android │ │ │ │ ├── index.md │ │ │ │ ├── plugin.md │ │ │ │ ├── upgrade.md │ │ │ │ └── webview.md │ │ │ ├── electron │ │ │ │ └── index.md │ │ │ ├── ios │ │ │ │ ├── index.md │ │ │ │ ├── plugin.md │ │ │ │ ├── upgrade.md │ │ │ │ └── webview.md │ │ │ ├── osx │ │ │ │ ├── config.md │ │ │ │ ├── index.md │ │ │ │ └── plugin.md │ │ │ └── windows │ │ │ │ ├── index.md │ │ │ │ ├── plugin.md │ │ │ │ └── upgrade.md │ │ └── support │ │ │ └── index.md │ ├── index.md │ ├── platform_pinning │ │ └── index.md │ ├── platform_plugin_versioning_ref │ │ └── index.md │ ├── plugin_ref │ │ ├── plugman.md │ │ └── spec.md │ ├── reference │ │ ├── cordova-cli │ │ │ └── index.md │ │ ├── cordova-plugin-battery-status │ │ │ └── index.md │ │ ├── cordova-plugin-camera │ │ │ └── index.md │ │ ├── cordova-plugin-device │ │ │ └── index.md │ │ ├── cordova-plugin-dialogs │ │ │ └── index.md │ │ ├── cordova-plugin-file │ │ │ └── index.md │ │ ├── cordova-plugin-geolocation │ │ │ └── index.md │ │ ├── cordova-plugin-inappbrowser │ │ │ └── index.md │ │ ├── cordova-plugin-media-capture │ │ │ └── index.md │ │ ├── cordova-plugin-media │ │ │ └── index.md │ │ ├── cordova-plugin-network-information │ │ │ └── index.md │ │ ├── cordova-plugin-screen-orientation │ │ │ └── index.md │ │ ├── cordova-plugin-splashscreen │ │ │ └── index.md │ │ ├── cordova-plugin-statusbar │ │ │ └── index.md │ │ └── cordova-plugin-vibration │ │ │ └── index.md │ └── third-party │ │ └── index.md │ ├── 12.x-2025.01 │ ├── config_ref │ │ ├── images.md │ │ └── index.md │ ├── cordova │ │ ├── events │ │ │ └── events.md │ │ └── storage │ │ │ └── storage.md │ ├── core │ │ └── features │ │ │ └── splashscreen │ │ │ └── index.md │ ├── guide │ │ ├── appdev │ │ │ ├── allowlist │ │ │ │ └── index.md │ │ │ ├── hooks │ │ │ │ └── index.md │ │ │ ├── privacy │ │ │ │ └── index.md │ │ │ └── security │ │ │ │ └── index.md │ │ ├── cli │ │ │ ├── index.md │ │ │ ├── installation.md │ │ │ └── template.md │ │ ├── hybrid │ │ │ ├── plugins │ │ │ │ └── index.md │ │ │ └── webviews │ │ │ │ └── index.md │ │ ├── next │ │ │ └── index.md │ │ ├── overview │ │ │ ├── index.md │ │ │ └── project-structure.md │ │ ├── platforms │ │ │ ├── android │ │ │ │ ├── index.md │ │ │ │ ├── plugin.md │ │ │ │ ├── upgrade.md │ │ │ │ └── webview.md │ │ │ ├── electron │ │ │ │ └── index.md │ │ │ └── ios │ │ │ │ ├── index.md │ │ │ │ ├── plugin.md │ │ │ │ ├── upgrade.md │ │ │ │ └── webview.md │ │ └── support │ │ │ └── index.md │ ├── index.md │ ├── platform_pinning │ │ └── index.md │ ├── platform_plugin_versioning_ref │ │ └── index.md │ ├── plugin_ref │ │ ├── plugman.md │ │ └── spec.md │ ├── reference │ │ ├── cordova-cli │ │ │ └── index.md │ │ ├── cordova-plugin-battery-status │ │ │ └── index.md │ │ ├── cordova-plugin-camera │ │ │ └── index.md │ │ ├── cordova-plugin-device │ │ │ └── index.md │ │ ├── cordova-plugin-dialogs │ │ │ └── index.md │ │ ├── cordova-plugin-file │ │ │ └── index.md │ │ ├── cordova-plugin-geolocation │ │ │ └── index.md │ │ ├── cordova-plugin-inappbrowser │ │ │ └── index.md │ │ ├── cordova-plugin-media-capture │ │ │ └── index.md │ │ ├── cordova-plugin-media │ │ │ └── index.md │ │ ├── cordova-plugin-network-information │ │ │ └── index.md │ │ ├── cordova-plugin-screen-orientation │ │ │ └── index.md │ │ ├── cordova-plugin-splashscreen │ │ │ └── index.md │ │ ├── cordova-plugin-statusbar │ │ │ └── index.md │ │ └── cordova-plugin-vibration │ │ │ └── index.md │ └── third-party │ │ └── index.md │ ├── 12.x │ ├── config_ref │ │ ├── images.md │ │ └── index.md │ ├── cordova │ │ ├── events │ │ │ └── events.md │ │ └── storage │ │ │ └── storage.md │ ├── core │ │ └── features │ │ │ └── splashscreen │ │ │ └── index.md │ ├── guide │ │ ├── appdev │ │ │ ├── allowlist │ │ │ │ └── index.md │ │ │ ├── hooks │ │ │ │ └── index.md │ │ │ ├── privacy │ │ │ │ └── index.md │ │ │ └── security │ │ │ │ └── index.md │ │ ├── cli │ │ │ ├── index.md │ │ │ ├── installation.md │ │ │ └── template.md │ │ ├── hybrid │ │ │ ├── plugins │ │ │ │ └── index.md │ │ │ └── webviews │ │ │ │ └── index.md │ │ ├── next │ │ │ └── index.md │ │ ├── overview │ │ │ └── index.md │ │ ├── platforms │ │ │ ├── android │ │ │ │ ├── index.md │ │ │ │ ├── plugin.md │ │ │ │ ├── upgrade.md │ │ │ │ └── webview.md │ │ │ ├── electron │ │ │ │ └── index.md │ │ │ └── ios │ │ │ │ ├── index.md │ │ │ │ ├── plugin.md │ │ │ │ ├── upgrade.md │ │ │ │ └── webview.md │ │ └── support │ │ │ └── index.md │ ├── index.md │ ├── platform_pinning │ │ └── index.md │ ├── platform_plugin_versioning_ref │ │ └── index.md │ ├── plugin_ref │ │ ├── plugman.md │ │ └── spec.md │ ├── reference │ │ ├── cordova-cli │ │ │ └── index.md │ │ ├── cordova-plugin-battery-status │ │ │ └── index.md │ │ ├── cordova-plugin-camera │ │ │ └── index.md │ │ ├── cordova-plugin-device │ │ │ └── index.md │ │ ├── cordova-plugin-dialogs │ │ │ └── index.md │ │ ├── cordova-plugin-file │ │ │ └── index.md │ │ ├── cordova-plugin-geolocation │ │ │ └── index.md │ │ ├── cordova-plugin-inappbrowser │ │ │ └── index.md │ │ ├── cordova-plugin-media-capture │ │ │ └── index.md │ │ ├── cordova-plugin-media │ │ │ └── index.md │ │ ├── cordova-plugin-network-information │ │ │ └── index.md │ │ ├── cordova-plugin-screen-orientation │ │ │ └── index.md │ │ ├── cordova-plugin-splashscreen │ │ │ └── index.md │ │ ├── cordova-plugin-statusbar │ │ │ └── index.md │ │ └── cordova-plugin-vibration │ │ │ └── index.md │ └── third-party │ │ └── index.md │ ├── 13.x-2025.11 │ ├── config_ref │ │ ├── images.md │ │ └── index.md │ ├── cordova │ │ ├── events │ │ │ └── events.md │ │ └── storage │ │ │ └── storage.md │ ├── core │ │ └── features │ │ │ └── splashscreen │ │ │ └── index.md │ ├── guide │ │ ├── appdev │ │ │ ├── allowlist │ │ │ │ └── index.md │ │ │ ├── hooks │ │ │ │ └── index.md │ │ │ ├── privacy │ │ │ │ └── index.md │ │ │ └── security │ │ │ │ └── index.md │ │ ├── cli │ │ │ ├── index.md │ │ │ ├── installation.md │ │ │ └── template.md │ │ ├── hybrid │ │ │ ├── plugins │ │ │ │ └── index.md │ │ │ └── webviews │ │ │ │ └── index.md │ │ ├── next │ │ │ └── index.md │ │ ├── overview │ │ │ ├── index.md │ │ │ └── project-structure.md │ │ ├── platforms │ │ │ ├── android │ │ │ │ ├── index.md │ │ │ │ ├── plugin.md │ │ │ │ ├── upgrade.md │ │ │ │ └── webview.md │ │ │ ├── electron │ │ │ │ └── index.md │ │ │ └── ios │ │ │ │ ├── index.md │ │ │ │ ├── plugin.md │ │ │ │ ├── upgrade.md │ │ │ │ └── webview.md │ │ └── support │ │ │ └── index.md │ ├── index.md │ ├── platform_pinning │ │ └── index.md │ ├── platform_plugin_versioning_ref │ │ └── index.md │ ├── plugin_ref │ │ ├── plugman.md │ │ └── spec.md │ ├── reference │ │ ├── cordova-cli │ │ │ └── index.md │ │ ├── cordova-plugin-battery-status │ │ │ └── index.md │ │ ├── cordova-plugin-camera │ │ │ └── index.md │ │ ├── cordova-plugin-device │ │ │ └── index.md │ │ ├── cordova-plugin-dialogs │ │ │ └── index.md │ │ ├── cordova-plugin-file │ │ │ └── index.md │ │ ├── cordova-plugin-geolocation │ │ │ └── index.md │ │ ├── cordova-plugin-inappbrowser │ │ │ └── index.md │ │ ├── cordova-plugin-media-capture │ │ │ └── index.md │ │ ├── cordova-plugin-media │ │ │ └── index.md │ │ ├── cordova-plugin-network-information │ │ │ └── index.md │ │ ├── cordova-plugin-screen-orientation │ │ │ └── index.md │ │ ├── cordova-plugin-splashscreen │ │ │ └── index.md │ │ ├── cordova-plugin-statusbar │ │ │ └── index.md │ │ └── cordova-plugin-vibration │ │ │ └── index.md │ └── third-party │ │ └── index.md │ ├── 2.0.0 │ ├── cordova │ │ ├── accelerometer │ │ │ ├── acceleration │ │ │ │ └── acceleration.md │ │ │ ├── accelerometer.clearWatch.md │ │ │ ├── accelerometer.getCurrentAcceleration.md │ │ │ ├── accelerometer.md │ │ │ ├── accelerometer.watchAcceleration.md │ │ │ └── parameters │ │ │ │ ├── accelerometerError.md │ │ │ │ ├── accelerometerOptions.md │ │ │ │ └── accelerometerSuccess.md │ │ ├── camera │ │ │ ├── camera.cleanup.md │ │ │ ├── camera.getPicture.md │ │ │ ├── camera.md │ │ │ └── parameter │ │ │ │ ├── CameraPopoverOptions.md │ │ │ │ ├── cameraError.md │ │ │ │ ├── cameraOptions.md │ │ │ │ └── cameraSuccess.md │ │ ├── compass │ │ │ ├── compass.clearWatch.md │ │ │ ├── compass.clearWatchFilter.md │ │ │ ├── compass.getCurrentHeading.md │ │ │ ├── compass.md │ │ │ ├── compass.watchHeading.md │ │ │ ├── compass.watchHeadingFilter.md │ │ │ ├── compassError │ │ │ │ └── compassError.md │ │ │ └── parameters │ │ │ │ ├── compassError.md │ │ │ │ ├── compassHeading.md │ │ │ │ ├── compassOptions.md │ │ │ │ └── compassSuccess.md │ │ ├── connection │ │ │ ├── connection.md │ │ │ └── connection.type.md │ │ ├── contacts │ │ │ ├── Contact │ │ │ │ └── contact.md │ │ │ ├── ContactAddress │ │ │ │ └── contactaddress.md │ │ │ ├── ContactError │ │ │ │ └── contactError.md │ │ │ ├── ContactField │ │ │ │ └── contactfield.md │ │ │ ├── ContactFindOptions │ │ │ │ └── contactfindoptions.md │ │ │ ├── ContactName │ │ │ │ └── contactname.md │ │ │ ├── ContactOrganization │ │ │ │ └── contactorganization.md │ │ │ ├── contacts.create.md │ │ │ ├── contacts.find.md │ │ │ ├── contacts.md │ │ │ └── parameters │ │ │ │ ├── contactError.md │ │ │ │ ├── contactFields.md │ │ │ │ ├── contactFindOptions.md │ │ │ │ └── contactSuccess.md │ │ ├── device │ │ │ ├── device.cordova.md │ │ │ ├── device.md │ │ │ ├── device.name.md │ │ │ ├── device.platform.md │ │ │ ├── device.uuid.md │ │ │ └── device.version.md │ │ ├── events │ │ │ ├── events.backbutton.md │ │ │ ├── events.batterycritical.md │ │ │ ├── events.batterylow.md │ │ │ ├── events.batterystatus.md │ │ │ ├── events.deviceready.md │ │ │ ├── events.endcallbutton.md │ │ │ ├── events.md │ │ │ ├── events.menubutton.md │ │ │ ├── events.offline.md │ │ │ ├── events.online.md │ │ │ ├── events.pause.md │ │ │ ├── events.resume.md │ │ │ ├── events.searchbutton.md │ │ │ ├── events.startcallbutton.md │ │ │ ├── events.volumedownbutton.md │ │ │ └── events.volumeupbutton.md │ │ ├── file │ │ │ ├── directoryentry │ │ │ │ └── directoryentry.md │ │ │ ├── directoryreader │ │ │ │ └── directoryreader.md │ │ │ ├── file.md │ │ │ ├── fileentry │ │ │ │ └── fileentry.md │ │ │ ├── fileerror │ │ │ │ └── fileerror.md │ │ │ ├── fileobj │ │ │ │ └── fileobj.md │ │ │ ├── filereader │ │ │ │ └── filereader.md │ │ │ ├── filesystem │ │ │ │ └── filesystem.md │ │ │ ├── filetransfer │ │ │ │ └── filetransfer.md │ │ │ ├── filetransfererror │ │ │ │ └── filetransfererror.md │ │ │ ├── fileuploadoptions │ │ │ │ └── fileuploadoptions.md │ │ │ ├── fileuploadresult │ │ │ │ └── fileuploadresult.md │ │ │ ├── filewriter │ │ │ │ └── filewriter.md │ │ │ ├── flags │ │ │ │ └── flags.md │ │ │ ├── localfilesystem │ │ │ │ └── localfilesystem.md │ │ │ └── metadata │ │ │ │ └── metadata.md │ │ ├── geolocation │ │ │ ├── Coordinates │ │ │ │ └── coordinates.md │ │ │ ├── Position │ │ │ │ └── position.md │ │ │ ├── PositionError │ │ │ │ └── positionError.md │ │ │ ├── geolocation.clearWatch.md │ │ │ ├── geolocation.getCurrentPosition.md │ │ │ ├── geolocation.md │ │ │ ├── geolocation.watchPosition.md │ │ │ └── parameters │ │ │ │ ├── geolocation.options.md │ │ │ │ ├── geolocationError.md │ │ │ │ └── geolocationSuccess.md │ │ ├── media │ │ │ ├── MediaError │ │ │ │ └── mediaError.md │ │ │ ├── Parameters │ │ │ │ └── mediaError.md │ │ │ ├── capture │ │ │ │ ├── CaptureCB.md │ │ │ │ ├── CaptureError.md │ │ │ │ ├── CaptureErrorCB.md │ │ │ │ ├── ConfigurationData.md │ │ │ │ ├── MediaFile.getFormatData.md │ │ │ │ ├── MediaFile.md │ │ │ │ ├── MediaFileData.md │ │ │ │ ├── capture.md │ │ │ │ ├── captureAudio.md │ │ │ │ ├── captureAudioOptions.md │ │ │ │ ├── captureImage.md │ │ │ │ ├── captureImageOptions.md │ │ │ │ ├── captureVideo.md │ │ │ │ └── captureVideoOptions.md │ │ │ ├── media.getCurrentPosition.md │ │ │ ├── media.getDuration.md │ │ │ ├── media.md │ │ │ ├── media.pause.md │ │ │ ├── media.play.md │ │ │ ├── media.release.md │ │ │ ├── media.seekTo.md │ │ │ ├── media.startRecord.md │ │ │ ├── media.stop.md │ │ │ └── media.stopRecord.md │ │ ├── notification │ │ │ ├── notification.alert.md │ │ │ ├── notification.beep.md │ │ │ ├── notification.confirm.md │ │ │ ├── notification.md │ │ │ └── notification.vibrate.md │ │ └── storage │ │ │ ├── database │ │ │ └── database.md │ │ │ ├── localstorage │ │ │ └── localstorage.md │ │ │ ├── parameters │ │ │ ├── display_name.md │ │ │ ├── name.md │ │ │ ├── size.md │ │ │ └── version.md │ │ │ ├── sqlerror │ │ │ └── sqlerror.md │ │ │ ├── sqlresultset │ │ │ └── sqlresultset.md │ │ │ ├── sqlresultsetlist │ │ │ └── sqlresultsetlist.md │ │ │ ├── sqltransaction │ │ │ └── sqltransaction.md │ │ │ ├── storage.md │ │ │ └── storage.opendatabase.md │ ├── guide │ │ ├── command-line │ │ │ └── index.md │ │ ├── cordova-webview │ │ │ ├── android.md │ │ │ ├── index.md │ │ │ └── ios.md │ │ ├── getting-started │ │ │ ├── android │ │ │ │ └── index.md │ │ │ ├── bada │ │ │ │ └── index.md │ │ │ ├── blackberry │ │ │ │ └── index.md │ │ │ ├── index.md │ │ │ ├── ios │ │ │ │ └── index.md │ │ │ ├── symbian │ │ │ │ └── index.md │ │ │ ├── webos │ │ │ │ └── index.md │ │ │ └── windows-phone │ │ │ │ └── index.md │ │ ├── plugin-development │ │ │ ├── android │ │ │ │ └── index.md │ │ │ ├── bada │ │ │ │ └── index.md │ │ │ ├── blackberry │ │ │ │ └── index.md │ │ │ ├── index.md │ │ │ ├── ios │ │ │ │ └── index.md │ │ │ ├── webos │ │ │ │ └── index.md │ │ │ └── windows-phone │ │ │ │ └── index.md │ │ ├── upgrading │ │ │ ├── android │ │ │ │ └── index.md │ │ │ ├── bada │ │ │ │ └── index.md │ │ │ ├── blackberry │ │ │ │ └── index.md │ │ │ ├── index.md │ │ │ ├── ios │ │ │ │ └── index.md │ │ │ ├── symbian │ │ │ │ └── index.md │ │ │ ├── webos │ │ │ │ └── index.md │ │ │ └── windows-phone │ │ │ │ └── index.md │ │ └── whitelist │ │ │ └── index.md │ └── index.md │ ├── 2.1.0 │ ├── cordova │ │ ├── accelerometer │ │ │ ├── acceleration │ │ │ │ └── acceleration.md │ │ │ ├── accelerometer.clearWatch.md │ │ │ ├── accelerometer.getCurrentAcceleration.md │ │ │ ├── accelerometer.md │ │ │ ├── accelerometer.watchAcceleration.md │ │ │ └── parameters │ │ │ │ ├── accelerometerError.md │ │ │ │ ├── accelerometerOptions.md │ │ │ │ └── accelerometerSuccess.md │ │ ├── camera │ │ │ ├── camera.cleanup.md │ │ │ ├── camera.getPicture.md │ │ │ ├── camera.md │ │ │ └── parameter │ │ │ │ ├── CameraPopoverOptions.md │ │ │ │ ├── cameraError.md │ │ │ │ ├── cameraOptions.md │ │ │ │ └── cameraSuccess.md │ │ ├── compass │ │ │ ├── compass.clearWatch.md │ │ │ ├── compass.clearWatchFilter.md │ │ │ ├── compass.getCurrentHeading.md │ │ │ ├── compass.md │ │ │ ├── compass.watchHeading.md │ │ │ ├── compass.watchHeadingFilter.md │ │ │ ├── compassError │ │ │ │ └── compassError.md │ │ │ └── parameters │ │ │ │ ├── compassError.md │ │ │ │ ├── compassHeading.md │ │ │ │ ├── compassOptions.md │ │ │ │ └── compassSuccess.md │ │ ├── connection │ │ │ ├── connection.md │ │ │ └── connection.type.md │ │ ├── contacts │ │ │ ├── Contact │ │ │ │ └── contact.md │ │ │ ├── ContactAddress │ │ │ │ └── contactaddress.md │ │ │ ├── ContactError │ │ │ │ └── contactError.md │ │ │ ├── ContactField │ │ │ │ └── contactfield.md │ │ │ ├── ContactFindOptions │ │ │ │ └── contactfindoptions.md │ │ │ ├── ContactName │ │ │ │ └── contactname.md │ │ │ ├── ContactOrganization │ │ │ │ └── contactorganization.md │ │ │ ├── contacts.create.md │ │ │ ├── contacts.find.md │ │ │ ├── contacts.md │ │ │ └── parameters │ │ │ │ ├── contactError.md │ │ │ │ ├── contactFields.md │ │ │ │ ├── contactFindOptions.md │ │ │ │ └── contactSuccess.md │ │ ├── device │ │ │ ├── device.cordova.md │ │ │ ├── device.md │ │ │ ├── device.name.md │ │ │ ├── device.platform.md │ │ │ ├── device.uuid.md │ │ │ └── device.version.md │ │ ├── events │ │ │ ├── events.backbutton.md │ │ │ ├── events.batterycritical.md │ │ │ ├── events.batterylow.md │ │ │ ├── events.batterystatus.md │ │ │ ├── events.deviceready.md │ │ │ ├── events.endcallbutton.md │ │ │ ├── events.md │ │ │ ├── events.menubutton.md │ │ │ ├── events.offline.md │ │ │ ├── events.online.md │ │ │ ├── events.pause.md │ │ │ ├── events.resume.md │ │ │ ├── events.searchbutton.md │ │ │ ├── events.startcallbutton.md │ │ │ ├── events.volumedownbutton.md │ │ │ └── events.volumeupbutton.md │ │ ├── file │ │ │ ├── directoryentry │ │ │ │ └── directoryentry.md │ │ │ ├── directoryreader │ │ │ │ └── directoryreader.md │ │ │ ├── file.md │ │ │ ├── fileentry │ │ │ │ └── fileentry.md │ │ │ ├── fileerror │ │ │ │ └── fileerror.md │ │ │ ├── fileobj │ │ │ │ └── fileobj.md │ │ │ ├── filereader │ │ │ │ └── filereader.md │ │ │ ├── filesystem │ │ │ │ └── filesystem.md │ │ │ ├── filetransfer │ │ │ │ └── filetransfer.md │ │ │ ├── filetransfererror │ │ │ │ └── filetransfererror.md │ │ │ ├── fileuploadoptions │ │ │ │ └── fileuploadoptions.md │ │ │ ├── fileuploadresult │ │ │ │ └── fileuploadresult.md │ │ │ ├── filewriter │ │ │ │ └── filewriter.md │ │ │ ├── flags │ │ │ │ └── flags.md │ │ │ ├── localfilesystem │ │ │ │ └── localfilesystem.md │ │ │ └── metadata │ │ │ │ └── metadata.md │ │ ├── geolocation │ │ │ ├── Coordinates │ │ │ │ └── coordinates.md │ │ │ ├── Position │ │ │ │ └── position.md │ │ │ ├── PositionError │ │ │ │ └── positionError.md │ │ │ ├── geolocation.clearWatch.md │ │ │ ├── geolocation.getCurrentPosition.md │ │ │ ├── geolocation.md │ │ │ ├── geolocation.watchPosition.md │ │ │ └── parameters │ │ │ │ ├── geolocation.options.md │ │ │ │ ├── geolocationError.md │ │ │ │ └── geolocationSuccess.md │ │ ├── media │ │ │ ├── MediaError │ │ │ │ └── mediaError.md │ │ │ ├── Parameters │ │ │ │ └── mediaError.md │ │ │ ├── capture │ │ │ │ ├── CaptureCB.md │ │ │ │ ├── CaptureError.md │ │ │ │ ├── CaptureErrorCB.md │ │ │ │ ├── ConfigurationData.md │ │ │ │ ├── MediaFile.getFormatData.md │ │ │ │ ├── MediaFile.md │ │ │ │ ├── MediaFileData.md │ │ │ │ ├── capture.md │ │ │ │ ├── captureAudio.md │ │ │ │ ├── captureAudioOptions.md │ │ │ │ ├── captureImage.md │ │ │ │ ├── captureImageOptions.md │ │ │ │ ├── captureVideo.md │ │ │ │ └── captureVideoOptions.md │ │ │ ├── media.getCurrentPosition.md │ │ │ ├── media.getDuration.md │ │ │ ├── media.md │ │ │ ├── media.pause.md │ │ │ ├── media.play.md │ │ │ ├── media.release.md │ │ │ ├── media.seekTo.md │ │ │ ├── media.startRecord.md │ │ │ ├── media.stop.md │ │ │ └── media.stopRecord.md │ │ ├── notification │ │ │ ├── notification.alert.md │ │ │ ├── notification.beep.md │ │ │ ├── notification.confirm.md │ │ │ ├── notification.md │ │ │ └── notification.vibrate.md │ │ └── storage │ │ │ ├── database │ │ │ └── database.md │ │ │ ├── localstorage │ │ │ └── localstorage.md │ │ │ ├── parameters │ │ │ ├── display_name.md │ │ │ ├── name.md │ │ │ ├── size.md │ │ │ └── version.md │ │ │ ├── sqlerror │ │ │ └── sqlerror.md │ │ │ ├── sqlresultset │ │ │ └── sqlresultset.md │ │ │ ├── sqlresultsetlist │ │ │ └── sqlresultsetlist.md │ │ │ ├── sqltransaction │ │ │ └── sqltransaction.md │ │ │ ├── storage.md │ │ │ └── storage.opendatabase.md │ ├── guide │ │ ├── command-line │ │ │ └── index.md │ │ ├── cordova-webview │ │ │ ├── android.md │ │ │ ├── index.md │ │ │ └── ios.md │ │ ├── getting-started │ │ │ ├── android │ │ │ │ └── index.md │ │ │ ├── bada │ │ │ │ └── index.md │ │ │ ├── blackberry │ │ │ │ └── index.md │ │ │ ├── index.md │ │ │ ├── ios │ │ │ │ └── index.md │ │ │ ├── symbian │ │ │ │ └── index.md │ │ │ ├── tizen │ │ │ │ └── index.md │ │ │ ├── webos │ │ │ │ └── index.md │ │ │ └── windows-phone │ │ │ │ └── index.md │ │ ├── plugin-development │ │ │ ├── android │ │ │ │ └── index.md │ │ │ ├── bada │ │ │ │ └── index.md │ │ │ ├── blackberry │ │ │ │ └── index.md │ │ │ ├── index.md │ │ │ ├── ios │ │ │ │ └── index.md │ │ │ ├── tizen │ │ │ │ └── index.md │ │ │ ├── webos │ │ │ │ └── index.md │ │ │ └── windows-phone │ │ │ │ └── index.md │ │ ├── upgrading │ │ │ ├── android │ │ │ │ └── index.md │ │ │ ├── bada │ │ │ │ └── index.md │ │ │ ├── blackberry │ │ │ │ └── index.md │ │ │ ├── index.md │ │ │ ├── ios │ │ │ │ └── index.md │ │ │ ├── symbian │ │ │ │ └── index.md │ │ │ ├── tizen │ │ │ │ └── index.md │ │ │ ├── webos │ │ │ │ └── index.md │ │ │ └── windows-phone │ │ │ │ └── index.md │ │ └── whitelist │ │ │ └── index.md │ └── index.md │ ├── 2.2.0 │ ├── cordova │ │ ├── accelerometer │ │ │ ├── acceleration │ │ │ │ └── acceleration.md │ │ │ ├── accelerometer.clearWatch.md │ │ │ ├── accelerometer.getCurrentAcceleration.md │ │ │ ├── accelerometer.md │ │ │ ├── accelerometer.watchAcceleration.md │ │ │ └── parameters │ │ │ │ ├── accelerometerError.md │ │ │ │ ├── accelerometerOptions.md │ │ │ │ └── accelerometerSuccess.md │ │ ├── camera │ │ │ ├── camera.cleanup.md │ │ │ ├── camera.getPicture.md │ │ │ ├── camera.md │ │ │ └── parameter │ │ │ │ ├── CameraPopoverOptions.md │ │ │ │ ├── cameraError.md │ │ │ │ ├── cameraOptions.md │ │ │ │ └── cameraSuccess.md │ │ ├── compass │ │ │ ├── compass.clearWatch.md │ │ │ ├── compass.clearWatchFilter.md │ │ │ ├── compass.getCurrentHeading.md │ │ │ ├── compass.md │ │ │ ├── compass.watchHeading.md │ │ │ ├── compass.watchHeadingFilter.md │ │ │ ├── compassError │ │ │ │ └── compassError.md │ │ │ └── parameters │ │ │ │ ├── compassError.md │ │ │ │ ├── compassHeading.md │ │ │ │ ├── compassOptions.md │ │ │ │ └── compassSuccess.md │ │ ├── connection │ │ │ ├── connection.md │ │ │ └── connection.type.md │ │ ├── contacts │ │ │ ├── Contact │ │ │ │ └── contact.md │ │ │ ├── ContactAddress │ │ │ │ └── contactaddress.md │ │ │ ├── ContactError │ │ │ │ └── contactError.md │ │ │ ├── ContactField │ │ │ │ └── contactfield.md │ │ │ ├── ContactFindOptions │ │ │ │ └── contactfindoptions.md │ │ │ ├── ContactName │ │ │ │ └── contactname.md │ │ │ ├── ContactOrganization │ │ │ │ └── contactorganization.md │ │ │ ├── contacts.create.md │ │ │ ├── contacts.find.md │ │ │ ├── contacts.md │ │ │ └── parameters │ │ │ │ ├── contactError.md │ │ │ │ ├── contactFields.md │ │ │ │ ├── contactFindOptions.md │ │ │ │ └── contactSuccess.md │ │ ├── device │ │ │ ├── device.cordova.md │ │ │ ├── device.md │ │ │ ├── device.name.md │ │ │ ├── device.platform.md │ │ │ ├── device.uuid.md │ │ │ └── device.version.md │ │ ├── events │ │ │ ├── events.backbutton.md │ │ │ ├── events.batterycritical.md │ │ │ ├── events.batterylow.md │ │ │ ├── events.batterystatus.md │ │ │ ├── events.deviceready.md │ │ │ ├── events.endcallbutton.md │ │ │ ├── events.md │ │ │ ├── events.menubutton.md │ │ │ ├── events.offline.md │ │ │ ├── events.online.md │ │ │ ├── events.pause.md │ │ │ ├── events.resume.md │ │ │ ├── events.searchbutton.md │ │ │ ├── events.startcallbutton.md │ │ │ ├── events.volumedownbutton.md │ │ │ └── events.volumeupbutton.md │ │ ├── file │ │ │ ├── directoryentry │ │ │ │ └── directoryentry.md │ │ │ ├── directoryreader │ │ │ │ └── directoryreader.md │ │ │ ├── file.md │ │ │ ├── fileentry │ │ │ │ └── fileentry.md │ │ │ ├── fileerror │ │ │ │ └── fileerror.md │ │ │ ├── fileobj │ │ │ │ └── fileobj.md │ │ │ ├── filereader │ │ │ │ └── filereader.md │ │ │ ├── filesystem │ │ │ │ └── filesystem.md │ │ │ ├── filetransfer │ │ │ │ └── filetransfer.md │ │ │ ├── filetransfererror │ │ │ │ └── filetransfererror.md │ │ │ ├── fileuploadoptions │ │ │ │ └── fileuploadoptions.md │ │ │ ├── fileuploadresult │ │ │ │ └── fileuploadresult.md │ │ │ ├── filewriter │ │ │ │ └── filewriter.md │ │ │ ├── flags │ │ │ │ └── flags.md │ │ │ ├── localfilesystem │ │ │ │ └── localfilesystem.md │ │ │ └── metadata │ │ │ │ └── metadata.md │ │ ├── geolocation │ │ │ ├── Coordinates │ │ │ │ └── coordinates.md │ │ │ ├── Position │ │ │ │ └── position.md │ │ │ ├── PositionError │ │ │ │ └── positionError.md │ │ │ ├── geolocation.clearWatch.md │ │ │ ├── geolocation.getCurrentPosition.md │ │ │ ├── geolocation.md │ │ │ ├── geolocation.watchPosition.md │ │ │ └── parameters │ │ │ │ ├── geolocation.options.md │ │ │ │ ├── geolocationError.md │ │ │ │ └── geolocationSuccess.md │ │ ├── globalization │ │ │ ├── GlobalizationError │ │ │ │ └── globalizationerror.md │ │ │ ├── globalization.dateToString.md │ │ │ ├── globalization.getCurrencyPattern.md │ │ │ ├── globalization.getDateNames.md │ │ │ ├── globalization.getDatePattern.md │ │ │ ├── globalization.getFirstDayOfWeek.md │ │ │ ├── globalization.getLocaleName.md │ │ │ ├── globalization.getNumberPattern.md │ │ │ ├── globalization.getPreferredLanguage.md │ │ │ ├── globalization.isDayLightSavingsTime.md │ │ │ ├── globalization.md │ │ │ ├── globalization.numberToString.md │ │ │ ├── globalization.stringToDate.md │ │ │ └── globalization.stringToNumber.md │ │ ├── media │ │ │ ├── MediaError │ │ │ │ └── mediaError.md │ │ │ ├── Parameters │ │ │ │ └── mediaError.md │ │ │ ├── capture │ │ │ │ ├── CaptureCB.md │ │ │ │ ├── CaptureError.md │ │ │ │ ├── CaptureErrorCB.md │ │ │ │ ├── ConfigurationData.md │ │ │ │ ├── MediaFile.getFormatData.md │ │ │ │ ├── MediaFile.md │ │ │ │ ├── MediaFileData.md │ │ │ │ ├── capture.md │ │ │ │ ├── captureAudio.md │ │ │ │ ├── captureAudioOptions.md │ │ │ │ ├── captureImage.md │ │ │ │ ├── captureImageOptions.md │ │ │ │ ├── captureVideo.md │ │ │ │ └── captureVideoOptions.md │ │ │ ├── media.getCurrentPosition.md │ │ │ ├── media.getDuration.md │ │ │ ├── media.md │ │ │ ├── media.pause.md │ │ │ ├── media.play.md │ │ │ ├── media.release.md │ │ │ ├── media.seekTo.md │ │ │ ├── media.startRecord.md │ │ │ ├── media.stop.md │ │ │ └── media.stopRecord.md │ │ ├── notification │ │ │ ├── notification.alert.md │ │ │ ├── notification.beep.md │ │ │ ├── notification.confirm.md │ │ │ ├── notification.md │ │ │ └── notification.vibrate.md │ │ ├── splashscreen │ │ │ ├── splashscreen.hide.md │ │ │ ├── splashscreen.md │ │ │ └── splashscreen.show.md │ │ └── storage │ │ │ ├── database │ │ │ └── database.md │ │ │ ├── localstorage │ │ │ └── localstorage.md │ │ │ ├── parameters │ │ │ ├── display_name.md │ │ │ ├── name.md │ │ │ ├── size.md │ │ │ └── version.md │ │ │ ├── sqlerror │ │ │ └── sqlerror.md │ │ │ ├── sqlresultset │ │ │ └── sqlresultset.md │ │ │ ├── sqlresultsetlist │ │ │ └── sqlresultsetlist.md │ │ │ ├── sqltransaction │ │ │ └── sqltransaction.md │ │ │ ├── storage.md │ │ │ └── storage.opendatabase.md │ ├── guide │ │ ├── command-line │ │ │ └── index.md │ │ ├── cordova-webview │ │ │ ├── android.md │ │ │ ├── index.md │ │ │ └── ios.md │ │ ├── getting-started │ │ │ ├── android │ │ │ │ └── index.md │ │ │ ├── bada │ │ │ │ └── index.md │ │ │ ├── blackberry │ │ │ │ └── index.md │ │ │ ├── index.md │ │ │ ├── ios │ │ │ │ └── index.md │ │ │ ├── symbian │ │ │ │ └── index.md │ │ │ ├── tizen │ │ │ │ └── index.md │ │ │ ├── webos │ │ │ │ └── index.md │ │ │ ├── windows-8 │ │ │ │ └── index.md │ │ │ └── windows-phone │ │ │ │ └── index.md │ │ ├── plugin-development │ │ │ ├── android │ │ │ │ └── index.md │ │ │ ├── bada │ │ │ │ └── index.md │ │ │ ├── blackberry │ │ │ │ └── index.md │ │ │ ├── index.md │ │ │ ├── ios │ │ │ │ └── index.md │ │ │ ├── tizen │ │ │ │ └── index.md │ │ │ ├── webos │ │ │ │ └── index.md │ │ │ └── windows-phone │ │ │ │ └── index.md │ │ ├── project-settings │ │ │ ├── index.md │ │ │ └── ios │ │ │ │ └── index.md │ │ ├── upgrading │ │ │ ├── android │ │ │ │ └── index.md │ │ │ ├── bada │ │ │ │ └── index.md │ │ │ ├── blackberry │ │ │ │ └── index.md │ │ │ ├── index.md │ │ │ ├── ios │ │ │ │ └── index.md │ │ │ ├── symbian │ │ │ │ └── index.md │ │ │ ├── tizen │ │ │ │ └── index.md │ │ │ ├── webos │ │ │ │ └── index.md │ │ │ └── windows-phone │ │ │ │ └── index.md │ │ └── whitelist │ │ │ └── index.md │ └── index.md │ ├── 2.3.0 │ ├── cordova │ │ ├── accelerometer │ │ │ ├── acceleration │ │ │ │ └── acceleration.md │ │ │ ├── accelerometer.clearWatch.md │ │ │ ├── accelerometer.getCurrentAcceleration.md │ │ │ ├── accelerometer.md │ │ │ ├── accelerometer.watchAcceleration.md │ │ │ └── parameters │ │ │ │ ├── accelerometerError.md │ │ │ │ ├── accelerometerOptions.md │ │ │ │ └── accelerometerSuccess.md │ │ ├── camera │ │ │ ├── camera.cleanup.md │ │ │ ├── camera.getPicture.md │ │ │ ├── camera.md │ │ │ └── parameter │ │ │ │ ├── CameraPopoverOptions.md │ │ │ │ ├── cameraError.md │ │ │ │ ├── cameraOptions.md │ │ │ │ └── cameraSuccess.md │ │ ├── compass │ │ │ ├── compass.clearWatch.md │ │ │ ├── compass.clearWatchFilter.md │ │ │ ├── compass.getCurrentHeading.md │ │ │ ├── compass.md │ │ │ ├── compass.watchHeading.md │ │ │ ├── compass.watchHeadingFilter.md │ │ │ ├── compassError │ │ │ │ └── compassError.md │ │ │ └── parameters │ │ │ │ ├── compassError.md │ │ │ │ ├── compassHeading.md │ │ │ │ ├── compassOptions.md │ │ │ │ └── compassSuccess.md │ │ ├── connection │ │ │ ├── connection.md │ │ │ └── connection.type.md │ │ ├── contacts │ │ │ ├── Contact │ │ │ │ └── contact.md │ │ │ ├── ContactAddress │ │ │ │ └── contactaddress.md │ │ │ ├── ContactError │ │ │ │ └── contactError.md │ │ │ ├── ContactField │ │ │ │ └── contactfield.md │ │ │ ├── ContactFindOptions │ │ │ │ └── contactfindoptions.md │ │ │ ├── ContactName │ │ │ │ └── contactname.md │ │ │ ├── ContactOrganization │ │ │ │ └── contactorganization.md │ │ │ ├── contacts.create.md │ │ │ ├── contacts.find.md │ │ │ ├── contacts.md │ │ │ └── parameters │ │ │ │ ├── contactError.md │ │ │ │ ├── contactFields.md │ │ │ │ ├── contactFindOptions.md │ │ │ │ └── contactSuccess.md │ │ ├── device │ │ │ ├── device.cordova.md │ │ │ ├── device.md │ │ │ ├── device.model.md │ │ │ ├── device.name.md │ │ │ ├── device.platform.md │ │ │ ├── device.uuid.md │ │ │ └── device.version.md │ │ ├── events │ │ │ ├── events.backbutton.md │ │ │ ├── events.batterycritical.md │ │ │ ├── events.batterylow.md │ │ │ ├── events.batterystatus.md │ │ │ ├── events.deviceready.md │ │ │ ├── events.endcallbutton.md │ │ │ ├── events.md │ │ │ ├── events.menubutton.md │ │ │ ├── events.offline.md │ │ │ ├── events.online.md │ │ │ ├── events.pause.md │ │ │ ├── events.resume.md │ │ │ ├── events.searchbutton.md │ │ │ ├── events.startcallbutton.md │ │ │ ├── events.volumedownbutton.md │ │ │ └── events.volumeupbutton.md │ │ ├── file │ │ │ ├── directoryentry │ │ │ │ └── directoryentry.md │ │ │ ├── directoryreader │ │ │ │ └── directoryreader.md │ │ │ ├── file.md │ │ │ ├── fileentry │ │ │ │ └── fileentry.md │ │ │ ├── fileerror │ │ │ │ └── fileerror.md │ │ │ ├── fileobj │ │ │ │ └── fileobj.md │ │ │ ├── filereader │ │ │ │ └── filereader.md │ │ │ ├── filesystem │ │ │ │ └── filesystem.md │ │ │ ├── filetransfer │ │ │ │ └── filetransfer.md │ │ │ ├── filetransfererror │ │ │ │ └── filetransfererror.md │ │ │ ├── fileuploadoptions │ │ │ │ └── fileuploadoptions.md │ │ │ ├── fileuploadresult │ │ │ │ └── fileuploadresult.md │ │ │ ├── filewriter │ │ │ │ └── filewriter.md │ │ │ ├── flags │ │ │ │ └── flags.md │ │ │ ├── localfilesystem │ │ │ │ └── localfilesystem.md │ │ │ └── metadata │ │ │ │ └── metadata.md │ │ ├── geolocation │ │ │ ├── Coordinates │ │ │ │ └── coordinates.md │ │ │ ├── Position │ │ │ │ └── position.md │ │ │ ├── PositionError │ │ │ │ └── positionError.md │ │ │ ├── geolocation.clearWatch.md │ │ │ ├── geolocation.getCurrentPosition.md │ │ │ ├── geolocation.md │ │ │ ├── geolocation.watchPosition.md │ │ │ └── parameters │ │ │ │ ├── geolocation.options.md │ │ │ │ ├── geolocationError.md │ │ │ │ └── geolocationSuccess.md │ │ ├── globalization │ │ │ ├── GlobalizationError │ │ │ │ └── globalizationerror.md │ │ │ ├── globalization.dateToString.md │ │ │ ├── globalization.getCurrencyPattern.md │ │ │ ├── globalization.getDateNames.md │ │ │ ├── globalization.getDatePattern.md │ │ │ ├── globalization.getFirstDayOfWeek.md │ │ │ ├── globalization.getLocaleName.md │ │ │ ├── globalization.getNumberPattern.md │ │ │ ├── globalization.getPreferredLanguage.md │ │ │ ├── globalization.isDayLightSavingsTime.md │ │ │ ├── globalization.md │ │ │ ├── globalization.numberToString.md │ │ │ ├── globalization.stringToDate.md │ │ │ └── globalization.stringToNumber.md │ │ ├── inappbrowser │ │ │ ├── inappbrowser.md │ │ │ └── window.open.md │ │ ├── media │ │ │ ├── MediaError │ │ │ │ └── mediaError.md │ │ │ ├── Parameters │ │ │ │ └── mediaError.md │ │ │ ├── capture │ │ │ │ ├── CaptureCB.md │ │ │ │ ├── CaptureError.md │ │ │ │ ├── CaptureErrorCB.md │ │ │ │ ├── ConfigurationData.md │ │ │ │ ├── MediaFile.getFormatData.md │ │ │ │ ├── MediaFile.md │ │ │ │ ├── MediaFileData.md │ │ │ │ ├── capture.md │ │ │ │ ├── captureAudio.md │ │ │ │ ├── captureAudioOptions.md │ │ │ │ ├── captureImage.md │ │ │ │ ├── captureImageOptions.md │ │ │ │ ├── captureVideo.md │ │ │ │ └── captureVideoOptions.md │ │ │ ├── media.getCurrentPosition.md │ │ │ ├── media.getDuration.md │ │ │ ├── media.md │ │ │ ├── media.pause.md │ │ │ ├── media.play.md │ │ │ ├── media.release.md │ │ │ ├── media.seekTo.md │ │ │ ├── media.startRecord.md │ │ │ ├── media.stop.md │ │ │ └── media.stopRecord.md │ │ ├── notification │ │ │ ├── notification.alert.md │ │ │ ├── notification.beep.md │ │ │ ├── notification.confirm.md │ │ │ ├── notification.md │ │ │ └── notification.vibrate.md │ │ ├── splashscreen │ │ │ ├── splashscreen.hide.md │ │ │ ├── splashscreen.md │ │ │ └── splashscreen.show.md │ │ └── storage │ │ │ ├── database │ │ │ └── database.md │ │ │ ├── localstorage │ │ │ └── localstorage.md │ │ │ ├── parameters │ │ │ ├── display_name.md │ │ │ ├── name.md │ │ │ ├── size.md │ │ │ └── version.md │ │ │ ├── sqlerror │ │ │ └── sqlerror.md │ │ │ ├── sqlresultset │ │ │ └── sqlresultset.md │ │ │ ├── sqlresultsetlist │ │ │ └── sqlresultsetlist.md │ │ │ ├── sqltransaction │ │ │ └── sqltransaction.md │ │ │ ├── storage.md │ │ │ └── storage.opendatabase.md │ ├── guide │ │ ├── command-line │ │ │ └── index.md │ │ ├── cordova-webview │ │ │ ├── android.md │ │ │ ├── index.md │ │ │ └── ios.md │ │ ├── getting-started │ │ │ ├── android │ │ │ │ └── index.md │ │ │ ├── bada │ │ │ │ └── index.md │ │ │ ├── blackberry │ │ │ │ └── index.md │ │ │ ├── index.md │ │ │ ├── ios │ │ │ │ └── index.md │ │ │ ├── symbian │ │ │ │ └── index.md │ │ │ ├── tizen │ │ │ │ └── index.md │ │ │ ├── webos │ │ │ │ └── index.md │ │ │ ├── windows-8 │ │ │ │ └── index.md │ │ │ ├── windows-phone-7 │ │ │ │ └── index.md │ │ │ └── windows-phone-8 │ │ │ │ └── index.md │ │ ├── plugin-development │ │ │ ├── android │ │ │ │ └── index.md │ │ │ ├── bada │ │ │ │ └── index.md │ │ │ ├── blackberry │ │ │ │ └── index.md │ │ │ ├── index.md │ │ │ ├── ios │ │ │ │ └── index.md │ │ │ ├── tizen │ │ │ │ └── index.md │ │ │ ├── webos │ │ │ │ └── index.md │ │ │ └── windows-phone │ │ │ │ └── index.md │ │ ├── project-settings │ │ │ ├── index.md │ │ │ └── ios │ │ │ │ └── index.md │ │ ├── upgrading │ │ │ ├── android │ │ │ │ └── index.md │ │ │ ├── bada │ │ │ │ └── index.md │ │ │ ├── blackberry │ │ │ │ └── index.md │ │ │ ├── index.md │ │ │ ├── ios │ │ │ │ └── index.md │ │ │ ├── symbian │ │ │ │ └── index.md │ │ │ ├── tizen │ │ │ │ └── index.md │ │ │ ├── webos │ │ │ │ └── index.md │ │ │ └── windows-phone │ │ │ │ └── index.md │ │ └── whitelist │ │ │ └── index.md │ └── index.md │ ├── 2.4.0 │ ├── cordova │ │ ├── accelerometer │ │ │ ├── acceleration │ │ │ │ └── acceleration.md │ │ │ ├── accelerometer.clearWatch.md │ │ │ ├── accelerometer.getCurrentAcceleration.md │ │ │ ├── accelerometer.md │ │ │ ├── accelerometer.watchAcceleration.md │ │ │ └── parameters │ │ │ │ ├── accelerometerError.md │ │ │ │ ├── accelerometerOptions.md │ │ │ │ └── accelerometerSuccess.md │ │ ├── camera │ │ │ ├── camera.cleanup.md │ │ │ ├── camera.getPicture.md │ │ │ ├── camera.md │ │ │ └── parameter │ │ │ │ ├── CameraPopoverOptions.md │ │ │ │ ├── cameraError.md │ │ │ │ ├── cameraOptions.md │ │ │ │ └── cameraSuccess.md │ │ ├── compass │ │ │ ├── compass.clearWatch.md │ │ │ ├── compass.clearWatchFilter.md │ │ │ ├── compass.getCurrentHeading.md │ │ │ ├── compass.md │ │ │ ├── compass.watchHeading.md │ │ │ ├── compass.watchHeadingFilter.md │ │ │ ├── compassError │ │ │ │ └── compassError.md │ │ │ └── parameters │ │ │ │ ├── compassError.md │ │ │ │ ├── compassHeading.md │ │ │ │ ├── compassOptions.md │ │ │ │ └── compassSuccess.md │ │ ├── connection │ │ │ ├── connection.md │ │ │ └── connection.type.md │ │ ├── contacts │ │ │ ├── Contact │ │ │ │ └── contact.md │ │ │ ├── ContactAddress │ │ │ │ └── contactaddress.md │ │ │ ├── ContactError │ │ │ │ └── contactError.md │ │ │ ├── ContactField │ │ │ │ └── contactfield.md │ │ │ ├── ContactFindOptions │ │ │ │ └── contactfindoptions.md │ │ │ ├── ContactName │ │ │ │ └── contactname.md │ │ │ ├── ContactOrganization │ │ │ │ └── contactorganization.md │ │ │ ├── contacts.create.md │ │ │ ├── contacts.find.md │ │ │ ├── contacts.md │ │ │ └── parameters │ │ │ │ ├── contactError.md │ │ │ │ ├── contactFields.md │ │ │ │ ├── contactFindOptions.md │ │ │ │ └── contactSuccess.md │ │ ├── device │ │ │ ├── device.cordova.md │ │ │ ├── device.md │ │ │ ├── device.model.md │ │ │ ├── device.name.md │ │ │ ├── device.platform.md │ │ │ ├── device.uuid.md │ │ │ └── device.version.md │ │ ├── events │ │ │ ├── events.backbutton.md │ │ │ ├── events.batterycritical.md │ │ │ ├── events.batterylow.md │ │ │ ├── events.batterystatus.md │ │ │ ├── events.deviceready.md │ │ │ ├── events.endcallbutton.md │ │ │ ├── events.md │ │ │ ├── events.menubutton.md │ │ │ ├── events.offline.md │ │ │ ├── events.online.md │ │ │ ├── events.pause.md │ │ │ ├── events.resume.md │ │ │ ├── events.searchbutton.md │ │ │ ├── events.startcallbutton.md │ │ │ ├── events.volumedownbutton.md │ │ │ └── events.volumeupbutton.md │ │ ├── file │ │ │ ├── directoryentry │ │ │ │ └── directoryentry.md │ │ │ ├── directoryreader │ │ │ │ └── directoryreader.md │ │ │ ├── file.md │ │ │ ├── fileentry │ │ │ │ └── fileentry.md │ │ │ ├── fileerror │ │ │ │ └── fileerror.md │ │ │ ├── fileobj │ │ │ │ └── fileobj.md │ │ │ ├── filereader │ │ │ │ └── filereader.md │ │ │ ├── filesystem │ │ │ │ └── filesystem.md │ │ │ ├── filetransfer │ │ │ │ └── filetransfer.md │ │ │ ├── filetransfererror │ │ │ │ └── filetransfererror.md │ │ │ ├── fileuploadoptions │ │ │ │ └── fileuploadoptions.md │ │ │ ├── fileuploadresult │ │ │ │ └── fileuploadresult.md │ │ │ ├── filewriter │ │ │ │ └── filewriter.md │ │ │ ├── flags │ │ │ │ └── flags.md │ │ │ ├── localfilesystem │ │ │ │ └── localfilesystem.md │ │ │ └── metadata │ │ │ │ └── metadata.md │ │ ├── geolocation │ │ │ ├── Coordinates │ │ │ │ └── coordinates.md │ │ │ ├── Position │ │ │ │ └── position.md │ │ │ ├── PositionError │ │ │ │ └── positionError.md │ │ │ ├── geolocation.clearWatch.md │ │ │ ├── geolocation.getCurrentPosition.md │ │ │ ├── geolocation.md │ │ │ ├── geolocation.watchPosition.md │ │ │ └── parameters │ │ │ │ ├── geolocation.options.md │ │ │ │ ├── geolocationError.md │ │ │ │ └── geolocationSuccess.md │ │ ├── globalization │ │ │ ├── GlobalizationError │ │ │ │ └── globalizationerror.md │ │ │ ├── globalization.dateToString.md │ │ │ ├── globalization.getCurrencyPattern.md │ │ │ ├── globalization.getDateNames.md │ │ │ ├── globalization.getDatePattern.md │ │ │ ├── globalization.getFirstDayOfWeek.md │ │ │ ├── globalization.getLocaleName.md │ │ │ ├── globalization.getNumberPattern.md │ │ │ ├── globalization.getPreferredLanguage.md │ │ │ ├── globalization.isDayLightSavingsTime.md │ │ │ ├── globalization.md │ │ │ ├── globalization.numberToString.md │ │ │ ├── globalization.stringToDate.md │ │ │ └── globalization.stringToNumber.md │ │ ├── inappbrowser │ │ │ ├── inappbrowser.md │ │ │ └── window.open.md │ │ ├── media │ │ │ ├── MediaError │ │ │ │ └── mediaError.md │ │ │ ├── Parameters │ │ │ │ └── mediaError.md │ │ │ ├── capture │ │ │ │ ├── CaptureCB.md │ │ │ │ ├── CaptureError.md │ │ │ │ ├── CaptureErrorCB.md │ │ │ │ ├── ConfigurationData.md │ │ │ │ ├── MediaFile.getFormatData.md │ │ │ │ ├── MediaFile.md │ │ │ │ ├── MediaFileData.md │ │ │ │ ├── capture.md │ │ │ │ ├── captureAudio.md │ │ │ │ ├── captureAudioOptions.md │ │ │ │ ├── captureImage.md │ │ │ │ ├── captureImageOptions.md │ │ │ │ ├── captureVideo.md │ │ │ │ └── captureVideoOptions.md │ │ │ ├── media.getCurrentPosition.md │ │ │ ├── media.getDuration.md │ │ │ ├── media.md │ │ │ ├── media.pause.md │ │ │ ├── media.play.md │ │ │ ├── media.release.md │ │ │ ├── media.seekTo.md │ │ │ ├── media.startRecord.md │ │ │ ├── media.stop.md │ │ │ └── media.stopRecord.md │ │ ├── notification │ │ │ ├── notification.alert.md │ │ │ ├── notification.beep.md │ │ │ ├── notification.confirm.md │ │ │ ├── notification.md │ │ │ └── notification.vibrate.md │ │ ├── splashscreen │ │ │ ├── splashscreen.hide.md │ │ │ ├── splashscreen.md │ │ │ └── splashscreen.show.md │ │ └── storage │ │ │ ├── database │ │ │ └── database.md │ │ │ ├── localstorage │ │ │ └── localstorage.md │ │ │ ├── parameters │ │ │ ├── display_name.md │ │ │ ├── name.md │ │ │ ├── size.md │ │ │ └── version.md │ │ │ ├── sqlerror │ │ │ └── sqlerror.md │ │ │ ├── sqlresultset │ │ │ └── sqlresultset.md │ │ │ ├── sqlresultsetrowlist │ │ │ └── sqlresultsetrowlist.md │ │ │ ├── sqltransaction │ │ │ └── sqltransaction.md │ │ │ ├── storage.md │ │ │ └── storage.opendatabase.md │ ├── guide │ │ ├── command-line │ │ │ └── index.md │ │ ├── cordova-webview │ │ │ ├── android.md │ │ │ ├── index.md │ │ │ └── ios.md │ │ ├── getting-started │ │ │ ├── android │ │ │ │ └── index.md │ │ │ ├── bada │ │ │ │ └── index.md │ │ │ ├── blackberry │ │ │ │ └── index.md │ │ │ ├── index.md │ │ │ ├── ios │ │ │ │ └── index.md │ │ │ ├── symbian │ │ │ │ └── index.md │ │ │ ├── tizen │ │ │ │ └── index.md │ │ │ ├── webos │ │ │ │ └── index.md │ │ │ ├── windows-8 │ │ │ │ └── index.md │ │ │ ├── windows-phone-7 │ │ │ │ └── index.md │ │ │ └── windows-phone-8 │ │ │ │ └── index.md │ │ ├── plugin-development │ │ │ ├── android │ │ │ │ └── index.md │ │ │ ├── bada │ │ │ │ └── index.md │ │ │ ├── blackberry │ │ │ │ └── index.md │ │ │ ├── index.md │ │ │ ├── ios │ │ │ │ └── index.md │ │ │ ├── tizen │ │ │ │ └── index.md │ │ │ ├── webos │ │ │ │ └── index.md │ │ │ └── windows-phone │ │ │ │ └── index.md │ │ ├── project-settings │ │ │ ├── android │ │ │ │ └── index.md │ │ │ ├── bada │ │ │ │ └── index.md │ │ │ ├── blackberry │ │ │ │ └── index.md │ │ │ ├── firefoxos │ │ │ │ └── index.md │ │ │ ├── index.md │ │ │ ├── ios │ │ │ │ └── index.md │ │ │ ├── webos │ │ │ │ └── index.md │ │ │ ├── windows8 │ │ │ │ └── index.md │ │ │ ├── wp7 │ │ │ │ └── index.md │ │ │ └── wp8 │ │ │ │ └── index.md │ │ ├── upgrading │ │ │ ├── android │ │ │ │ └── index.md │ │ │ ├── bada │ │ │ │ └── index.md │ │ │ ├── blackberry │ │ │ │ └── index.md │ │ │ ├── index.md │ │ │ ├── ios │ │ │ │ └── index.md │ │ │ ├── symbian │ │ │ │ └── index.md │ │ │ ├── tizen │ │ │ │ └── index.md │ │ │ ├── webos │ │ │ │ └── index.md │ │ │ └── windows-phone │ │ │ │ └── index.md │ │ └── whitelist │ │ │ └── index.md │ └── index.md │ ├── 2.5.0 │ ├── cordova │ │ ├── accelerometer │ │ │ ├── acceleration │ │ │ │ └── acceleration.md │ │ │ ├── accelerometer.clearWatch.md │ │ │ ├── accelerometer.getCurrentAcceleration.md │ │ │ ├── accelerometer.md │ │ │ ├── accelerometer.watchAcceleration.md │ │ │ └── parameters │ │ │ │ ├── accelerometerError.md │ │ │ │ ├── accelerometerOptions.md │ │ │ │ └── accelerometerSuccess.md │ │ ├── camera │ │ │ ├── camera.cleanup.md │ │ │ ├── camera.getPicture.md │ │ │ ├── camera.md │ │ │ └── parameter │ │ │ │ ├── CameraPopoverOptions.md │ │ │ │ ├── cameraError.md │ │ │ │ ├── cameraOptions.md │ │ │ │ └── cameraSuccess.md │ │ ├── compass │ │ │ ├── compass.clearWatch.md │ │ │ ├── compass.clearWatchFilter.md │ │ │ ├── compass.getCurrentHeading.md │ │ │ ├── compass.md │ │ │ ├── compass.watchHeading.md │ │ │ ├── compass.watchHeadingFilter.md │ │ │ ├── compassError │ │ │ │ └── compassError.md │ │ │ └── parameters │ │ │ │ ├── compassError.md │ │ │ │ ├── compassHeading.md │ │ │ │ ├── compassOptions.md │ │ │ │ └── compassSuccess.md │ │ ├── connection │ │ │ ├── connection.md │ │ │ └── connection.type.md │ │ ├── contacts │ │ │ ├── Contact │ │ │ │ └── contact.md │ │ │ ├── ContactAddress │ │ │ │ └── contactaddress.md │ │ │ ├── ContactError │ │ │ │ └── contactError.md │ │ │ ├── ContactField │ │ │ │ └── contactfield.md │ │ │ ├── ContactFindOptions │ │ │ │ └── contactfindoptions.md │ │ │ ├── ContactName │ │ │ │ └── contactname.md │ │ │ ├── ContactOrganization │ │ │ │ └── contactorganization.md │ │ │ ├── contacts.create.md │ │ │ ├── contacts.find.md │ │ │ ├── contacts.md │ │ │ └── parameters │ │ │ │ ├── contactError.md │ │ │ │ ├── contactFields.md │ │ │ │ ├── contactFindOptions.md │ │ │ │ └── contactSuccess.md │ │ ├── device │ │ │ ├── device.cordova.md │ │ │ ├── device.md │ │ │ ├── device.model.md │ │ │ ├── device.name.md │ │ │ ├── device.platform.md │ │ │ ├── device.uuid.md │ │ │ └── device.version.md │ │ ├── events │ │ │ ├── events.backbutton.md │ │ │ ├── events.batterycritical.md │ │ │ ├── events.batterylow.md │ │ │ ├── events.batterystatus.md │ │ │ ├── events.deviceready.md │ │ │ ├── events.endcallbutton.md │ │ │ ├── events.md │ │ │ ├── events.menubutton.md │ │ │ ├── events.offline.md │ │ │ ├── events.online.md │ │ │ ├── events.pause.md │ │ │ ├── events.resume.md │ │ │ ├── events.searchbutton.md │ │ │ ├── events.startcallbutton.md │ │ │ ├── events.volumedownbutton.md │ │ │ └── events.volumeupbutton.md │ │ ├── file │ │ │ ├── directoryentry │ │ │ │ └── directoryentry.md │ │ │ ├── directoryreader │ │ │ │ └── directoryreader.md │ │ │ ├── file.md │ │ │ ├── fileentry │ │ │ │ └── fileentry.md │ │ │ ├── fileerror │ │ │ │ └── fileerror.md │ │ │ ├── fileobj │ │ │ │ └── fileobj.md │ │ │ ├── filereader │ │ │ │ └── filereader.md │ │ │ ├── filesystem │ │ │ │ └── filesystem.md │ │ │ ├── filetransfer │ │ │ │ └── filetransfer.md │ │ │ ├── filetransfererror │ │ │ │ └── filetransfererror.md │ │ │ ├── fileuploadoptions │ │ │ │ └── fileuploadoptions.md │ │ │ ├── fileuploadresult │ │ │ │ └── fileuploadresult.md │ │ │ ├── filewriter │ │ │ │ └── filewriter.md │ │ │ ├── flags │ │ │ │ └── flags.md │ │ │ ├── localfilesystem │ │ │ │ └── localfilesystem.md │ │ │ └── metadata │ │ │ │ └── metadata.md │ │ ├── geolocation │ │ │ ├── Coordinates │ │ │ │ └── coordinates.md │ │ │ ├── Position │ │ │ │ └── position.md │ │ │ ├── PositionError │ │ │ │ └── positionError.md │ │ │ ├── geolocation.clearWatch.md │ │ │ ├── geolocation.getCurrentPosition.md │ │ │ ├── geolocation.md │ │ │ ├── geolocation.watchPosition.md │ │ │ └── parameters │ │ │ │ ├── geolocation.options.md │ │ │ │ ├── geolocationError.md │ │ │ │ └── geolocationSuccess.md │ │ ├── globalization │ │ │ ├── GlobalizationError │ │ │ │ └── globalizationerror.md │ │ │ ├── globalization.dateToString.md │ │ │ ├── globalization.getCurrencyPattern.md │ │ │ ├── globalization.getDateNames.md │ │ │ ├── globalization.getDatePattern.md │ │ │ ├── globalization.getFirstDayOfWeek.md │ │ │ ├── globalization.getLocaleName.md │ │ │ ├── globalization.getNumberPattern.md │ │ │ ├── globalization.getPreferredLanguage.md │ │ │ ├── globalization.isDayLightSavingsTime.md │ │ │ ├── globalization.md │ │ │ ├── globalization.numberToString.md │ │ │ ├── globalization.stringToDate.md │ │ │ └── globalization.stringToNumber.md │ │ ├── inappbrowser │ │ │ ├── inappbrowser.md │ │ │ └── window.open.md │ │ ├── media │ │ │ ├── MediaError │ │ │ │ └── mediaError.md │ │ │ ├── Parameters │ │ │ │ └── mediaError.md │ │ │ ├── capture │ │ │ │ ├── CaptureCB.md │ │ │ │ ├── CaptureError.md │ │ │ │ ├── CaptureErrorCB.md │ │ │ │ ├── ConfigurationData.md │ │ │ │ ├── MediaFile.getFormatData.md │ │ │ │ ├── MediaFile.md │ │ │ │ ├── MediaFileData.md │ │ │ │ ├── capture.md │ │ │ │ ├── captureAudio.md │ │ │ │ ├── captureAudioOptions.md │ │ │ │ ├── captureImage.md │ │ │ │ ├── captureImageOptions.md │ │ │ │ ├── captureVideo.md │ │ │ │ └── captureVideoOptions.md │ │ │ ├── media.getCurrentPosition.md │ │ │ ├── media.getDuration.md │ │ │ ├── media.md │ │ │ ├── media.pause.md │ │ │ ├── media.play.md │ │ │ ├── media.release.md │ │ │ ├── media.seekTo.md │ │ │ ├── media.startRecord.md │ │ │ ├── media.stop.md │ │ │ └── media.stopRecord.md │ │ ├── notification │ │ │ ├── notification.alert.md │ │ │ ├── notification.beep.md │ │ │ ├── notification.confirm.md │ │ │ ├── notification.md │ │ │ └── notification.vibrate.md │ │ ├── splashscreen │ │ │ ├── splashscreen.hide.md │ │ │ ├── splashscreen.md │ │ │ └── splashscreen.show.md │ │ └── storage │ │ │ ├── database │ │ │ └── database.md │ │ │ ├── localstorage │ │ │ └── localstorage.md │ │ │ ├── parameters │ │ │ ├── display_name.md │ │ │ ├── name.md │ │ │ ├── size.md │ │ │ └── version.md │ │ │ ├── sqlerror │ │ │ └── sqlerror.md │ │ │ ├── sqlresultset │ │ │ └── sqlresultset.md │ │ │ ├── sqlresultsetrowlist │ │ │ └── sqlresultsetrowlist.md │ │ │ ├── sqltransaction │ │ │ └── sqltransaction.md │ │ │ ├── storage.md │ │ │ └── storage.opendatabase.md │ ├── guide │ │ ├── command-line │ │ │ └── index.md │ │ ├── cordova-webview │ │ │ ├── android.md │ │ │ ├── index.md │ │ │ └── ios.md │ │ ├── getting-started │ │ │ ├── android │ │ │ │ └── index.md │ │ │ ├── bada │ │ │ │ └── index.md │ │ │ ├── blackberry │ │ │ │ └── index.md │ │ │ ├── index.md │ │ │ ├── ios │ │ │ │ └── index.md │ │ │ ├── symbian │ │ │ │ └── index.md │ │ │ ├── tizen │ │ │ │ └── index.md │ │ │ ├── webos │ │ │ │ └── index.md │ │ │ ├── windows-8 │ │ │ │ └── index.md │ │ │ ├── windows-phone-7 │ │ │ │ └── index.md │ │ │ └── windows-phone-8 │ │ │ │ └── index.md │ │ ├── plugin-development │ │ │ ├── android │ │ │ │ └── index.md │ │ │ ├── bada │ │ │ │ └── index.md │ │ │ ├── blackberry │ │ │ │ └── index.md │ │ │ ├── index.md │ │ │ ├── ios │ │ │ │ └── index.md │ │ │ ├── tizen │ │ │ │ └── index.md │ │ │ ├── webos │ │ │ │ └── index.md │ │ │ └── windows-phone │ │ │ │ └── index.md │ │ ├── project-settings │ │ │ ├── android │ │ │ │ └── index.md │ │ │ ├── bada │ │ │ │ └── index.md │ │ │ ├── blackberry │ │ │ │ └── index.md │ │ │ ├── firefoxos │ │ │ │ └── index.md │ │ │ ├── index.md │ │ │ ├── ios │ │ │ │ └── index.md │ │ │ ├── webos │ │ │ │ └── index.md │ │ │ ├── windows8 │ │ │ │ └── index.md │ │ │ ├── wp7 │ │ │ │ └── index.md │ │ │ └── wp8 │ │ │ │ └── index.md │ │ ├── upgrading │ │ │ ├── android │ │ │ │ └── index.md │ │ │ ├── bada │ │ │ │ └── index.md │ │ │ ├── blackberry │ │ │ │ └── index.md │ │ │ ├── index.md │ │ │ ├── ios │ │ │ │ └── index.md │ │ │ ├── symbian │ │ │ │ └── index.md │ │ │ ├── tizen │ │ │ │ └── index.md │ │ │ ├── webos │ │ │ │ └── index.md │ │ │ └── windows-phone │ │ │ │ └── index.md │ │ └── whitelist │ │ │ └── index.md │ └── index.md │ ├── 2.6.0 │ ├── cordova │ │ ├── accelerometer │ │ │ ├── acceleration │ │ │ │ └── acceleration.md │ │ │ ├── accelerometer.clearWatch.md │ │ │ ├── accelerometer.getCurrentAcceleration.md │ │ │ ├── accelerometer.md │ │ │ ├── accelerometer.watchAcceleration.md │ │ │ └── parameters │ │ │ │ ├── accelerometerError.md │ │ │ │ ├── accelerometerOptions.md │ │ │ │ └── accelerometerSuccess.md │ │ ├── camera │ │ │ ├── camera.cleanup.md │ │ │ ├── camera.getPicture.md │ │ │ ├── camera.md │ │ │ └── parameter │ │ │ │ ├── CameraPopoverHandle.md │ │ │ │ ├── CameraPopoverOptions.md │ │ │ │ ├── cameraError.md │ │ │ │ ├── cameraOptions.md │ │ │ │ └── cameraSuccess.md │ │ ├── compass │ │ │ ├── compass.clearWatch.md │ │ │ ├── compass.clearWatchFilter.md │ │ │ ├── compass.getCurrentHeading.md │ │ │ ├── compass.md │ │ │ ├── compass.watchHeading.md │ │ │ ├── compass.watchHeadingFilter.md │ │ │ ├── compassError │ │ │ │ └── compassError.md │ │ │ └── parameters │ │ │ │ ├── compassError.md │ │ │ │ ├── compassHeading.md │ │ │ │ ├── compassOptions.md │ │ │ │ └── compassSuccess.md │ │ ├── connection │ │ │ ├── connection.md │ │ │ └── connection.type.md │ │ ├── contacts │ │ │ ├── Contact │ │ │ │ └── contact.md │ │ │ ├── ContactAddress │ │ │ │ └── contactaddress.md │ │ │ ├── ContactError │ │ │ │ └── contactError.md │ │ │ ├── ContactField │ │ │ │ └── contactfield.md │ │ │ ├── ContactFindOptions │ │ │ │ └── contactfindoptions.md │ │ │ ├── ContactName │ │ │ │ └── contactname.md │ │ │ ├── ContactOrganization │ │ │ │ └── contactorganization.md │ │ │ ├── contacts.create.md │ │ │ ├── contacts.find.md │ │ │ ├── contacts.md │ │ │ └── parameters │ │ │ │ ├── contactError.md │ │ │ │ ├── contactFields.md │ │ │ │ ├── contactFindOptions.md │ │ │ │ └── contactSuccess.md │ │ ├── device │ │ │ ├── device.cordova.md │ │ │ ├── device.md │ │ │ ├── device.model.md │ │ │ ├── device.name.md │ │ │ ├── device.platform.md │ │ │ ├── device.uuid.md │ │ │ └── device.version.md │ │ ├── events │ │ │ ├── events.backbutton.md │ │ │ ├── events.batterycritical.md │ │ │ ├── events.batterylow.md │ │ │ ├── events.batterystatus.md │ │ │ ├── events.deviceready.md │ │ │ ├── events.endcallbutton.md │ │ │ ├── events.md │ │ │ ├── events.menubutton.md │ │ │ ├── events.offline.md │ │ │ ├── events.online.md │ │ │ ├── events.pause.md │ │ │ ├── events.resume.md │ │ │ ├── events.searchbutton.md │ │ │ ├── events.startcallbutton.md │ │ │ ├── events.volumedownbutton.md │ │ │ └── events.volumeupbutton.md │ │ ├── file │ │ │ ├── directoryentry │ │ │ │ └── directoryentry.md │ │ │ ├── directoryreader │ │ │ │ └── directoryreader.md │ │ │ ├── file.md │ │ │ ├── fileentry │ │ │ │ └── fileentry.md │ │ │ ├── fileerror │ │ │ │ └── fileerror.md │ │ │ ├── fileobj │ │ │ │ └── fileobj.md │ │ │ ├── filereader │ │ │ │ └── filereader.md │ │ │ ├── filesystem │ │ │ │ └── filesystem.md │ │ │ ├── filetransfer │ │ │ │ └── filetransfer.md │ │ │ ├── filetransfererror │ │ │ │ └── filetransfererror.md │ │ │ ├── fileuploadoptions │ │ │ │ └── fileuploadoptions.md │ │ │ ├── fileuploadresult │ │ │ │ └── fileuploadresult.md │ │ │ ├── filewriter │ │ │ │ └── filewriter.md │ │ │ ├── flags │ │ │ │ └── flags.md │ │ │ ├── localfilesystem │ │ │ │ └── localfilesystem.md │ │ │ └── metadata │ │ │ │ └── metadata.md │ │ ├── geolocation │ │ │ ├── Coordinates │ │ │ │ └── coordinates.md │ │ │ ├── Position │ │ │ │ └── position.md │ │ │ ├── PositionError │ │ │ │ └── positionError.md │ │ │ ├── geolocation.clearWatch.md │ │ │ ├── geolocation.getCurrentPosition.md │ │ │ ├── geolocation.md │ │ │ ├── geolocation.watchPosition.md │ │ │ └── parameters │ │ │ │ ├── geolocation.options.md │ │ │ │ ├── geolocationError.md │ │ │ │ └── geolocationSuccess.md │ │ ├── globalization │ │ │ ├── GlobalizationError │ │ │ │ └── globalizationerror.md │ │ │ ├── globalization.dateToString.md │ │ │ ├── globalization.getCurrencyPattern.md │ │ │ ├── globalization.getDateNames.md │ │ │ ├── globalization.getDatePattern.md │ │ │ ├── globalization.getFirstDayOfWeek.md │ │ │ ├── globalization.getLocaleName.md │ │ │ ├── globalization.getNumberPattern.md │ │ │ ├── globalization.getPreferredLanguage.md │ │ │ ├── globalization.isDayLightSavingsTime.md │ │ │ ├── globalization.md │ │ │ ├── globalization.numberToString.md │ │ │ ├── globalization.stringToDate.md │ │ │ └── globalization.stringToNumber.md │ │ ├── inappbrowser │ │ │ ├── inappbrowser.md │ │ │ └── window.open.md │ │ ├── media │ │ │ ├── MediaError │ │ │ │ └── mediaError.md │ │ │ ├── Parameters │ │ │ │ └── mediaError.md │ │ │ ├── capture │ │ │ │ ├── CaptureCB.md │ │ │ │ ├── CaptureError.md │ │ │ │ ├── CaptureErrorCB.md │ │ │ │ ├── ConfigurationData.md │ │ │ │ ├── MediaFile.getFormatData.md │ │ │ │ ├── MediaFile.md │ │ │ │ ├── MediaFileData.md │ │ │ │ ├── capture.md │ │ │ │ ├── captureAudio.md │ │ │ │ ├── captureAudioOptions.md │ │ │ │ ├── captureImage.md │ │ │ │ ├── captureImageOptions.md │ │ │ │ ├── captureVideo.md │ │ │ │ └── captureVideoOptions.md │ │ │ ├── media.getCurrentPosition.md │ │ │ ├── media.getDuration.md │ │ │ ├── media.md │ │ │ ├── media.pause.md │ │ │ ├── media.play.md │ │ │ ├── media.release.md │ │ │ ├── media.seekTo.md │ │ │ ├── media.startRecord.md │ │ │ ├── media.stop.md │ │ │ └── media.stopRecord.md │ │ ├── notification │ │ │ ├── notification.alert.md │ │ │ ├── notification.beep.md │ │ │ ├── notification.confirm.md │ │ │ ├── notification.md │ │ │ ├── notification.prompt.md │ │ │ └── notification.vibrate.md │ │ ├── splashscreen │ │ │ ├── splashscreen.hide.md │ │ │ ├── splashscreen.md │ │ │ └── splashscreen.show.md │ │ └── storage │ │ │ ├── database │ │ │ └── database.md │ │ │ ├── localstorage │ │ │ └── localstorage.md │ │ │ ├── parameters │ │ │ ├── display_name.md │ │ │ ├── name.md │ │ │ ├── size.md │ │ │ └── version.md │ │ │ ├── sqlerror │ │ │ └── sqlerror.md │ │ │ ├── sqlresultset │ │ │ └── sqlresultset.md │ │ │ ├── sqlresultsetrowlist │ │ │ └── sqlresultsetrowlist.md │ │ │ ├── sqltransaction │ │ │ └── sqltransaction.md │ │ │ ├── storage.md │ │ │ └── storage.opendatabase.md │ ├── guide │ │ ├── command-line │ │ │ └── index.md │ │ ├── cordova-webview │ │ │ ├── android.md │ │ │ ├── index.md │ │ │ └── ios.md │ │ ├── getting-started │ │ │ ├── android │ │ │ │ └── index.md │ │ │ ├── bada │ │ │ │ └── index.md │ │ │ ├── blackberry │ │ │ │ └── index.md │ │ │ ├── index.md │ │ │ ├── ios │ │ │ │ └── index.md │ │ │ ├── symbian │ │ │ │ └── index.md │ │ │ ├── tizen │ │ │ │ └── index.md │ │ │ ├── webos │ │ │ │ └── index.md │ │ │ ├── windows-8 │ │ │ │ └── index.md │ │ │ ├── windows-phone-7 │ │ │ │ └── index.md │ │ │ └── windows-phone-8 │ │ │ │ └── index.md │ │ ├── plugin-development │ │ │ ├── android │ │ │ │ └── index.md │ │ │ ├── bada │ │ │ │ └── index.md │ │ │ ├── blackberry │ │ │ │ └── index.md │ │ │ ├── index.md │ │ │ ├── ios │ │ │ │ └── index.md │ │ │ ├── tizen │ │ │ │ └── index.md │ │ │ ├── webos │ │ │ │ └── index.md │ │ │ └── windows-phone │ │ │ │ └── index.md │ │ ├── project-settings │ │ │ ├── android │ │ │ │ └── index.md │ │ │ ├── bada │ │ │ │ └── index.md │ │ │ ├── blackberry │ │ │ │ └── index.md │ │ │ ├── firefoxos │ │ │ │ └── index.md │ │ │ ├── index.md │ │ │ ├── ios │ │ │ │ └── index.md │ │ │ ├── webos │ │ │ │ └── index.md │ │ │ ├── windows8 │ │ │ │ └── index.md │ │ │ ├── wp7 │ │ │ │ └── index.md │ │ │ └── wp8 │ │ │ │ └── index.md │ │ ├── upgrading │ │ │ ├── android │ │ │ │ └── index.md │ │ │ ├── bada │ │ │ │ └── index.md │ │ │ ├── blackberry │ │ │ │ └── index.md │ │ │ ├── index.md │ │ │ ├── ios │ │ │ │ └── index.md │ │ │ ├── symbian │ │ │ │ └── index.md │ │ │ ├── tizen │ │ │ │ └── index.md │ │ │ ├── webos │ │ │ │ └── index.md │ │ │ └── windows-phone │ │ │ │ └── index.md │ │ └── whitelist │ │ │ └── index.md │ └── index.md │ ├── 2.7.0 │ ├── cordova │ │ ├── accelerometer │ │ │ ├── acceleration │ │ │ │ └── acceleration.md │ │ │ ├── accelerometer.clearWatch.md │ │ │ ├── accelerometer.getCurrentAcceleration.md │ │ │ ├── accelerometer.md │ │ │ ├── accelerometer.watchAcceleration.md │ │ │ └── parameters │ │ │ │ ├── accelerometerError.md │ │ │ │ ├── accelerometerOptions.md │ │ │ │ └── accelerometerSuccess.md │ │ ├── camera │ │ │ ├── camera.cleanup.md │ │ │ ├── camera.getPicture.md │ │ │ ├── camera.md │ │ │ └── parameter │ │ │ │ ├── CameraPopoverHandle.md │ │ │ │ ├── CameraPopoverOptions.md │ │ │ │ ├── cameraError.md │ │ │ │ ├── cameraOptions.md │ │ │ │ └── cameraSuccess.md │ │ ├── compass │ │ │ ├── compass.clearWatch.md │ │ │ ├── compass.clearWatchFilter.md │ │ │ ├── compass.getCurrentHeading.md │ │ │ ├── compass.md │ │ │ ├── compass.watchHeading.md │ │ │ ├── compass.watchHeadingFilter.md │ │ │ ├── compassError │ │ │ │ └── compassError.md │ │ │ └── parameters │ │ │ │ ├── compassError.md │ │ │ │ ├── compassHeading.md │ │ │ │ ├── compassOptions.md │ │ │ │ └── compassSuccess.md │ │ ├── connection │ │ │ ├── connection.md │ │ │ └── connection.type.md │ │ ├── contacts │ │ │ ├── Contact │ │ │ │ └── contact.md │ │ │ ├── ContactAddress │ │ │ │ └── contactaddress.md │ │ │ ├── ContactError │ │ │ │ └── contactError.md │ │ │ ├── ContactField │ │ │ │ └── contactfield.md │ │ │ ├── ContactFindOptions │ │ │ │ └── contactfindoptions.md │ │ │ ├── ContactName │ │ │ │ └── contactname.md │ │ │ ├── ContactOrganization │ │ │ │ └── contactorganization.md │ │ │ ├── contacts.create.md │ │ │ ├── contacts.find.md │ │ │ ├── contacts.md │ │ │ └── parameters │ │ │ │ ├── contactError.md │ │ │ │ ├── contactFields.md │ │ │ │ ├── contactFindOptions.md │ │ │ │ └── contactSuccess.md │ │ ├── device │ │ │ ├── device.cordova.md │ │ │ ├── device.md │ │ │ ├── device.model.md │ │ │ ├── device.name.md │ │ │ ├── device.platform.md │ │ │ ├── device.uuid.md │ │ │ └── device.version.md │ │ ├── events │ │ │ ├── events.backbutton.md │ │ │ ├── events.batterycritical.md │ │ │ ├── events.batterylow.md │ │ │ ├── events.batterystatus.md │ │ │ ├── events.deviceready.md │ │ │ ├── events.endcallbutton.md │ │ │ ├── events.md │ │ │ ├── events.menubutton.md │ │ │ ├── events.offline.md │ │ │ ├── events.online.md │ │ │ ├── events.pause.md │ │ │ ├── events.resume.md │ │ │ ├── events.searchbutton.md │ │ │ ├── events.startcallbutton.md │ │ │ ├── events.volumedownbutton.md │ │ │ └── events.volumeupbutton.md │ │ ├── file │ │ │ ├── directoryentry │ │ │ │ └── directoryentry.md │ │ │ ├── directoryreader │ │ │ │ └── directoryreader.md │ │ │ ├── file.md │ │ │ ├── fileentry │ │ │ │ └── fileentry.md │ │ │ ├── fileerror │ │ │ │ └── fileerror.md │ │ │ ├── fileobj │ │ │ │ └── fileobj.md │ │ │ ├── filereader │ │ │ │ └── filereader.md │ │ │ ├── filesystem │ │ │ │ └── filesystem.md │ │ │ ├── filetransfer │ │ │ │ └── filetransfer.md │ │ │ ├── filetransfererror │ │ │ │ └── filetransfererror.md │ │ │ ├── fileuploadoptions │ │ │ │ └── fileuploadoptions.md │ │ │ ├── fileuploadresult │ │ │ │ └── fileuploadresult.md │ │ │ ├── filewriter │ │ │ │ └── filewriter.md │ │ │ ├── flags │ │ │ │ └── flags.md │ │ │ ├── localfilesystem │ │ │ │ └── localfilesystem.md │ │ │ └── metadata │ │ │ │ └── metadata.md │ │ ├── geolocation │ │ │ ├── Coordinates │ │ │ │ └── coordinates.md │ │ │ ├── Position │ │ │ │ └── position.md │ │ │ ├── PositionError │ │ │ │ └── positionError.md │ │ │ ├── geolocation.clearWatch.md │ │ │ ├── geolocation.getCurrentPosition.md │ │ │ ├── geolocation.md │ │ │ ├── geolocation.watchPosition.md │ │ │ └── parameters │ │ │ │ ├── geolocation.options.md │ │ │ │ ├── geolocationError.md │ │ │ │ └── geolocationSuccess.md │ │ ├── globalization │ │ │ ├── GlobalizationError │ │ │ │ └── globalizationerror.md │ │ │ ├── globalization.dateToString.md │ │ │ ├── globalization.getCurrencyPattern.md │ │ │ ├── globalization.getDateNames.md │ │ │ ├── globalization.getDatePattern.md │ │ │ ├── globalization.getFirstDayOfWeek.md │ │ │ ├── globalization.getLocaleName.md │ │ │ ├── globalization.getNumberPattern.md │ │ │ ├── globalization.getPreferredLanguage.md │ │ │ ├── globalization.isDayLightSavingsTime.md │ │ │ ├── globalization.md │ │ │ ├── globalization.numberToString.md │ │ │ ├── globalization.stringToDate.md │ │ │ └── globalization.stringToNumber.md │ │ ├── inappbrowser │ │ │ ├── inappbrowser.md │ │ │ └── window.open.md │ │ ├── media │ │ │ ├── MediaError │ │ │ │ └── mediaError.md │ │ │ ├── Parameters │ │ │ │ └── mediaError.md │ │ │ ├── capture │ │ │ │ ├── CaptureCB.md │ │ │ │ ├── CaptureError.md │ │ │ │ ├── CaptureErrorCB.md │ │ │ │ ├── ConfigurationData.md │ │ │ │ ├── MediaFile.getFormatData.md │ │ │ │ ├── MediaFile.md │ │ │ │ ├── MediaFileData.md │ │ │ │ ├── capture.md │ │ │ │ ├── captureAudio.md │ │ │ │ ├── captureAudioOptions.md │ │ │ │ ├── captureImage.md │ │ │ │ ├── captureImageOptions.md │ │ │ │ ├── captureVideo.md │ │ │ │ └── captureVideoOptions.md │ │ │ ├── media.getCurrentPosition.md │ │ │ ├── media.getDuration.md │ │ │ ├── media.md │ │ │ ├── media.pause.md │ │ │ ├── media.play.md │ │ │ ├── media.release.md │ │ │ ├── media.seekTo.md │ │ │ ├── media.startRecord.md │ │ │ ├── media.stop.md │ │ │ └── media.stopRecord.md │ │ ├── notification │ │ │ ├── notification.alert.md │ │ │ ├── notification.beep.md │ │ │ ├── notification.confirm.md │ │ │ ├── notification.md │ │ │ ├── notification.prompt.md │ │ │ └── notification.vibrate.md │ │ ├── splashscreen │ │ │ ├── splashscreen.hide.md │ │ │ ├── splashscreen.md │ │ │ └── splashscreen.show.md │ │ └── storage │ │ │ ├── database │ │ │ └── database.md │ │ │ ├── localstorage │ │ │ └── localstorage.md │ │ │ ├── parameters │ │ │ ├── display_name.md │ │ │ ├── name.md │ │ │ ├── size.md │ │ │ └── version.md │ │ │ ├── sqlerror │ │ │ └── sqlerror.md │ │ │ ├── sqlresultset │ │ │ └── sqlresultset.md │ │ │ ├── sqlresultsetrowlist │ │ │ └── sqlresultsetrowlist.md │ │ │ ├── sqltransaction │ │ │ └── sqltransaction.md │ │ │ ├── storage.md │ │ │ └── storage.opendatabase.md │ ├── guide │ │ ├── command-line │ │ │ └── index.md │ │ ├── cordova-webview │ │ │ ├── android.md │ │ │ ├── index.md │ │ │ └── ios.md │ │ ├── getting-started │ │ │ ├── android │ │ │ │ └── index.md │ │ │ ├── bada │ │ │ │ └── index.md │ │ │ ├── blackberry │ │ │ │ └── index.md │ │ │ ├── index.md │ │ │ ├── ios │ │ │ │ └── index.md │ │ │ ├── symbian │ │ │ │ └── index.md │ │ │ ├── tizen │ │ │ │ └── index.md │ │ │ ├── webos │ │ │ │ └── index.md │ │ │ ├── windows-8 │ │ │ │ └── index.md │ │ │ ├── windows-phone-7 │ │ │ │ └── index.md │ │ │ └── windows-phone-8 │ │ │ │ └── index.md │ │ ├── plugin-development │ │ │ ├── android │ │ │ │ └── index.md │ │ │ ├── bada │ │ │ │ └── index.md │ │ │ ├── blackberry │ │ │ │ └── index.md │ │ │ ├── index.md │ │ │ ├── ios │ │ │ │ └── index.md │ │ │ ├── tizen │ │ │ │ └── index.md │ │ │ ├── webos │ │ │ │ └── index.md │ │ │ └── windows-phone │ │ │ │ └── index.md │ │ ├── project-settings │ │ │ ├── android │ │ │ │ └── index.md │ │ │ ├── bada │ │ │ │ └── index.md │ │ │ ├── blackberry │ │ │ │ └── index.md │ │ │ ├── firefoxos │ │ │ │ └── index.md │ │ │ ├── index.md │ │ │ ├── ios │ │ │ │ └── index.md │ │ │ ├── webos │ │ │ │ └── index.md │ │ │ ├── windows8 │ │ │ │ └── index.md │ │ │ ├── wp7 │ │ │ │ └── index.md │ │ │ └── wp8 │ │ │ │ └── index.md │ │ ├── upgrading │ │ │ ├── android │ │ │ │ └── index.md │ │ │ ├── bada │ │ │ │ └── index.md │ │ │ ├── blackberry │ │ │ │ └── index.md │ │ │ ├── index.md │ │ │ ├── ios │ │ │ │ └── index.md │ │ │ ├── symbian │ │ │ │ └── index.md │ │ │ ├── tizen │ │ │ │ └── index.md │ │ │ ├── webos │ │ │ │ └── index.md │ │ │ └── windows-phone │ │ │ │ └── index.md │ │ └── whitelist │ │ │ └── index.md │ └── index.md │ ├── 2.8.0 │ ├── cordova │ │ ├── accelerometer │ │ │ ├── acceleration │ │ │ │ └── acceleration.md │ │ │ ├── accelerometer.clearWatch.md │ │ │ ├── accelerometer.getCurrentAcceleration.md │ │ │ ├── accelerometer.md │ │ │ ├── accelerometer.watchAcceleration.md │ │ │ └── parameters │ │ │ │ ├── accelerometerError.md │ │ │ │ ├── accelerometerOptions.md │ │ │ │ └── accelerometerSuccess.md │ │ ├── camera │ │ │ ├── camera.cleanup.md │ │ │ ├── camera.getPicture.md │ │ │ ├── camera.md │ │ │ └── parameter │ │ │ │ ├── CameraPopoverHandle.md │ │ │ │ ├── CameraPopoverOptions.md │ │ │ │ ├── cameraError.md │ │ │ │ ├── cameraOptions.md │ │ │ │ └── cameraSuccess.md │ │ ├── compass │ │ │ ├── compass.clearWatch.md │ │ │ ├── compass.clearWatchFilter.md │ │ │ ├── compass.getCurrentHeading.md │ │ │ ├── compass.md │ │ │ ├── compass.watchHeading.md │ │ │ ├── compass.watchHeadingFilter.md │ │ │ ├── compassError │ │ │ │ └── compassError.md │ │ │ └── parameters │ │ │ │ ├── compassError.md │ │ │ │ ├── compassHeading.md │ │ │ │ ├── compassOptions.md │ │ │ │ └── compassSuccess.md │ │ ├── connection │ │ │ ├── connection.md │ │ │ └── connection.type.md │ │ ├── contacts │ │ │ ├── Contact │ │ │ │ └── contact.md │ │ │ ├── ContactAddress │ │ │ │ └── contactaddress.md │ │ │ ├── ContactError │ │ │ │ └── contactError.md │ │ │ ├── ContactField │ │ │ │ └── contactfield.md │ │ │ ├── ContactFindOptions │ │ │ │ └── contactfindoptions.md │ │ │ ├── ContactName │ │ │ │ └── contactname.md │ │ │ ├── ContactOrganization │ │ │ │ └── contactorganization.md │ │ │ ├── contacts.create.md │ │ │ ├── contacts.find.md │ │ │ ├── contacts.md │ │ │ └── parameters │ │ │ │ ├── contactError.md │ │ │ │ ├── contactFields.md │ │ │ │ ├── contactFindOptions.md │ │ │ │ └── contactSuccess.md │ │ ├── device │ │ │ ├── device.cordova.md │ │ │ ├── device.md │ │ │ ├── device.model.md │ │ │ ├── device.name.md │ │ │ ├── device.platform.md │ │ │ ├── device.uuid.md │ │ │ └── device.version.md │ │ ├── events │ │ │ ├── events.backbutton.md │ │ │ ├── events.batterycritical.md │ │ │ ├── events.batterylow.md │ │ │ ├── events.batterystatus.md │ │ │ ├── events.deviceready.md │ │ │ ├── events.endcallbutton.md │ │ │ ├── events.md │ │ │ ├── events.menubutton.md │ │ │ ├── events.offline.md │ │ │ ├── events.online.md │ │ │ ├── events.pause.md │ │ │ ├── events.resume.md │ │ │ ├── events.searchbutton.md │ │ │ ├── events.startcallbutton.md │ │ │ ├── events.volumedownbutton.md │ │ │ └── events.volumeupbutton.md │ │ ├── file │ │ │ ├── directoryentry │ │ │ │ └── directoryentry.md │ │ │ ├── directoryreader │ │ │ │ └── directoryreader.md │ │ │ ├── file.md │ │ │ ├── fileentry │ │ │ │ └── fileentry.md │ │ │ ├── fileerror │ │ │ │ └── fileerror.md │ │ │ ├── fileobj │ │ │ │ └── fileobj.md │ │ │ ├── filereader │ │ │ │ └── filereader.md │ │ │ ├── filesystem │ │ │ │ └── filesystem.md │ │ │ ├── filetransfer │ │ │ │ └── filetransfer.md │ │ │ ├── filetransfererror │ │ │ │ └── filetransfererror.md │ │ │ ├── fileuploadoptions │ │ │ │ └── fileuploadoptions.md │ │ │ ├── fileuploadresult │ │ │ │ └── fileuploadresult.md │ │ │ ├── filewriter │ │ │ │ └── filewriter.md │ │ │ ├── flags │ │ │ │ └── flags.md │ │ │ ├── localfilesystem │ │ │ │ └── localfilesystem.md │ │ │ └── metadata │ │ │ │ └── metadata.md │ │ ├── geolocation │ │ │ ├── Coordinates │ │ │ │ └── coordinates.md │ │ │ ├── Position │ │ │ │ └── position.md │ │ │ ├── PositionError │ │ │ │ └── positionError.md │ │ │ ├── geolocation.clearWatch.md │ │ │ ├── geolocation.getCurrentPosition.md │ │ │ ├── geolocation.md │ │ │ ├── geolocation.watchPosition.md │ │ │ └── parameters │ │ │ │ ├── geolocation.options.md │ │ │ │ ├── geolocationError.md │ │ │ │ └── geolocationSuccess.md │ │ ├── globalization │ │ │ ├── GlobalizationError │ │ │ │ └── globalizationerror.md │ │ │ ├── globalization.dateToString.md │ │ │ ├── globalization.getCurrencyPattern.md │ │ │ ├── globalization.getDateNames.md │ │ │ ├── globalization.getDatePattern.md │ │ │ ├── globalization.getFirstDayOfWeek.md │ │ │ ├── globalization.getLocaleName.md │ │ │ ├── globalization.getNumberPattern.md │ │ │ ├── globalization.getPreferredLanguage.md │ │ │ ├── globalization.isDayLightSavingsTime.md │ │ │ ├── globalization.md │ │ │ ├── globalization.numberToString.md │ │ │ ├── globalization.stringToDate.md │ │ │ └── globalization.stringToNumber.md │ │ ├── inappbrowser │ │ │ ├── inappbrowser.md │ │ │ └── window.open.md │ │ ├── media │ │ │ ├── MediaError │ │ │ │ └── mediaError.md │ │ │ ├── Parameters │ │ │ │ └── mediaError.md │ │ │ ├── capture │ │ │ │ ├── CaptureCB.md │ │ │ │ ├── CaptureError.md │ │ │ │ ├── CaptureErrorCB.md │ │ │ │ ├── ConfigurationData.md │ │ │ │ ├── MediaFile.getFormatData.md │ │ │ │ ├── MediaFile.md │ │ │ │ ├── MediaFileData.md │ │ │ │ ├── capture.md │ │ │ │ ├── captureAudio.md │ │ │ │ ├── captureAudioOptions.md │ │ │ │ ├── captureImage.md │ │ │ │ ├── captureImageOptions.md │ │ │ │ ├── captureVideo.md │ │ │ │ └── captureVideoOptions.md │ │ │ ├── media.getCurrentPosition.md │ │ │ ├── media.getDuration.md │ │ │ ├── media.md │ │ │ ├── media.pause.md │ │ │ ├── media.play.md │ │ │ ├── media.release.md │ │ │ ├── media.seekTo.md │ │ │ ├── media.setVolume.md │ │ │ ├── media.startRecord.md │ │ │ ├── media.stop.md │ │ │ └── media.stopRecord.md │ │ ├── notification │ │ │ ├── notification.alert.md │ │ │ ├── notification.beep.md │ │ │ ├── notification.confirm.md │ │ │ ├── notification.md │ │ │ ├── notification.prompt.md │ │ │ └── notification.vibrate.md │ │ ├── splashscreen │ │ │ ├── splashscreen.hide.md │ │ │ ├── splashscreen.md │ │ │ └── splashscreen.show.md │ │ └── storage │ │ │ ├── database │ │ │ └── database.md │ │ │ ├── localstorage │ │ │ └── localstorage.md │ │ │ ├── parameters │ │ │ ├── display_name.md │ │ │ ├── name.md │ │ │ ├── size.md │ │ │ └── version.md │ │ │ ├── sqlerror │ │ │ └── sqlerror.md │ │ │ ├── sqlresultset │ │ │ └── sqlresultset.md │ │ │ ├── sqlresultsetrowlist │ │ │ └── sqlresultsetrowlist.md │ │ │ ├── sqltransaction │ │ │ └── sqltransaction.md │ │ │ ├── storage.md │ │ │ └── storage.opendatabase.md │ ├── guide │ │ ├── command-line │ │ │ └── index.md │ │ ├── cordova-webview │ │ │ ├── android.md │ │ │ ├── index.md │ │ │ └── ios.md │ │ ├── getting-started │ │ │ ├── android │ │ │ │ └── index.md │ │ │ ├── bada │ │ │ │ └── index.md │ │ │ ├── blackberry │ │ │ │ └── index.md │ │ │ ├── blackberry10 │ │ │ │ └── index.md │ │ │ ├── index.md │ │ │ ├── ios │ │ │ │ └── index.md │ │ │ ├── symbian │ │ │ │ └── index.md │ │ │ ├── tizen │ │ │ │ └── index.md │ │ │ ├── webos │ │ │ │ └── index.md │ │ │ ├── windows-8 │ │ │ │ └── index.md │ │ │ ├── windows-phone-7 │ │ │ │ └── index.md │ │ │ └── windows-phone-8 │ │ │ │ └── index.md │ │ ├── plugin-development │ │ │ ├── android │ │ │ │ └── index.md │ │ │ ├── bada │ │ │ │ └── index.md │ │ │ ├── blackberry │ │ │ │ └── index.md │ │ │ ├── blackberry10 │ │ │ │ └── index.md │ │ │ ├── index.md │ │ │ ├── ios │ │ │ │ └── index.md │ │ │ ├── tizen │ │ │ │ └── index.md │ │ │ ├── webos │ │ │ │ └── index.md │ │ │ └── windows-phone │ │ │ │ └── index.md │ │ ├── privacy │ │ │ └── index.md │ │ ├── project-settings │ │ │ ├── android │ │ │ │ └── index.md │ │ │ ├── bada │ │ │ │ └── index.md │ │ │ ├── blackberry │ │ │ │ └── index.md │ │ │ ├── firefoxos │ │ │ │ └── index.md │ │ │ ├── index.md │ │ │ ├── ios │ │ │ │ └── index.md │ │ │ ├── webos │ │ │ │ └── index.md │ │ │ ├── windows8 │ │ │ │ └── index.md │ │ │ ├── wp7 │ │ │ │ └── index.md │ │ │ └── wp8 │ │ │ │ └── index.md │ │ ├── upgrading │ │ │ ├── android │ │ │ │ └── index.md │ │ │ ├── bada │ │ │ │ └── index.md │ │ │ ├── blackberry │ │ │ │ └── index.md │ │ │ ├── index.md │ │ │ ├── ios │ │ │ │ └── index.md │ │ │ ├── symbian │ │ │ │ └── index.md │ │ │ ├── tizen │ │ │ │ └── index.md │ │ │ ├── webos │ │ │ │ └── index.md │ │ │ ├── windows-8 │ │ │ │ └── index.md │ │ │ └── windows-phone │ │ │ │ └── index.md │ │ └── whitelist │ │ │ └── index.md │ └── index.md │ ├── 2.9.0 │ ├── cordova │ │ ├── accelerometer │ │ │ ├── acceleration │ │ │ │ └── acceleration.md │ │ │ ├── accelerometer.clearWatch.md │ │ │ ├── accelerometer.getCurrentAcceleration.md │ │ │ ├── accelerometer.md │ │ │ ├── accelerometer.watchAcceleration.md │ │ │ └── parameters │ │ │ │ ├── accelerometerError.md │ │ │ │ ├── accelerometerOptions.md │ │ │ │ └── accelerometerSuccess.md │ │ ├── camera │ │ │ ├── camera.cleanup.md │ │ │ ├── camera.getPicture.md │ │ │ ├── camera.md │ │ │ └── parameter │ │ │ │ ├── CameraPopoverHandle.md │ │ │ │ ├── CameraPopoverOptions.md │ │ │ │ ├── cameraError.md │ │ │ │ ├── cameraOptions.md │ │ │ │ └── cameraSuccess.md │ │ ├── compass │ │ │ ├── compass.clearWatch.md │ │ │ ├── compass.clearWatchFilter.md │ │ │ ├── compass.getCurrentHeading.md │ │ │ ├── compass.md │ │ │ ├── compass.watchHeading.md │ │ │ ├── compass.watchHeadingFilter.md │ │ │ ├── compassError │ │ │ │ └── compassError.md │ │ │ └── parameters │ │ │ │ ├── compassError.md │ │ │ │ ├── compassHeading.md │ │ │ │ ├── compassOptions.md │ │ │ │ └── compassSuccess.md │ │ ├── connection │ │ │ ├── connection.md │ │ │ └── connection.type.md │ │ ├── contacts │ │ │ ├── Contact │ │ │ │ └── contact.md │ │ │ ├── ContactAddress │ │ │ │ └── contactaddress.md │ │ │ ├── ContactError │ │ │ │ └── contactError.md │ │ │ ├── ContactField │ │ │ │ └── contactfield.md │ │ │ ├── ContactFindOptions │ │ │ │ └── contactfindoptions.md │ │ │ ├── ContactName │ │ │ │ └── contactname.md │ │ │ ├── ContactOrganization │ │ │ │ └── contactorganization.md │ │ │ ├── contacts.create.md │ │ │ ├── contacts.find.md │ │ │ ├── contacts.md │ │ │ └── parameters │ │ │ │ ├── contactError.md │ │ │ │ ├── contactFields.md │ │ │ │ ├── contactFindOptions.md │ │ │ │ └── contactSuccess.md │ │ ├── device │ │ │ ├── device.cordova.md │ │ │ ├── device.md │ │ │ ├── device.model.md │ │ │ ├── device.name.md │ │ │ ├── device.platform.md │ │ │ ├── device.uuid.md │ │ │ └── device.version.md │ │ ├── events │ │ │ ├── events.backbutton.md │ │ │ ├── events.batterycritical.md │ │ │ ├── events.batterylow.md │ │ │ ├── events.batterystatus.md │ │ │ ├── events.deviceready.md │ │ │ ├── events.endcallbutton.md │ │ │ ├── events.md │ │ │ ├── events.menubutton.md │ │ │ ├── events.offline.md │ │ │ ├── events.online.md │ │ │ ├── events.pause.md │ │ │ ├── events.resume.md │ │ │ ├── events.searchbutton.md │ │ │ ├── events.startcallbutton.md │ │ │ ├── events.volumedownbutton.md │ │ │ └── events.volumeupbutton.md │ │ ├── file │ │ │ ├── directoryentry │ │ │ │ └── directoryentry.md │ │ │ ├── directoryreader │ │ │ │ └── directoryreader.md │ │ │ ├── file.md │ │ │ ├── fileentry │ │ │ │ └── fileentry.md │ │ │ ├── fileerror │ │ │ │ └── fileerror.md │ │ │ ├── fileobj │ │ │ │ └── fileobj.md │ │ │ ├── filereader │ │ │ │ └── filereader.md │ │ │ ├── filesystem │ │ │ │ └── filesystem.md │ │ │ ├── filetransfer │ │ │ │ └── filetransfer.md │ │ │ ├── filetransfererror │ │ │ │ └── filetransfererror.md │ │ │ ├── fileuploadoptions │ │ │ │ └── fileuploadoptions.md │ │ │ ├── fileuploadresult │ │ │ │ └── fileuploadresult.md │ │ │ ├── filewriter │ │ │ │ └── filewriter.md │ │ │ ├── flags │ │ │ │ └── flags.md │ │ │ ├── localfilesystem │ │ │ │ └── localfilesystem.md │ │ │ └── metadata │ │ │ │ └── metadata.md │ │ ├── geolocation │ │ │ ├── Coordinates │ │ │ │ └── coordinates.md │ │ │ ├── Position │ │ │ │ └── position.md │ │ │ ├── PositionError │ │ │ │ └── positionError.md │ │ │ ├── geolocation.clearWatch.md │ │ │ ├── geolocation.getCurrentPosition.md │ │ │ ├── geolocation.md │ │ │ ├── geolocation.watchPosition.md │ │ │ └── parameters │ │ │ │ ├── geolocation.options.md │ │ │ │ ├── geolocationError.md │ │ │ │ └── geolocationSuccess.md │ │ ├── globalization │ │ │ ├── GlobalizationError │ │ │ │ └── globalizationerror.md │ │ │ ├── globalization.dateToString.md │ │ │ ├── globalization.getCurrencyPattern.md │ │ │ ├── globalization.getDateNames.md │ │ │ ├── globalization.getDatePattern.md │ │ │ ├── globalization.getFirstDayOfWeek.md │ │ │ ├── globalization.getLocaleName.md │ │ │ ├── globalization.getNumberPattern.md │ │ │ ├── globalization.getPreferredLanguage.md │ │ │ ├── globalization.isDayLightSavingsTime.md │ │ │ ├── globalization.md │ │ │ ├── globalization.numberToString.md │ │ │ ├── globalization.stringToDate.md │ │ │ └── globalization.stringToNumber.md │ │ ├── inappbrowser │ │ │ ├── inappbrowser.md │ │ │ └── window.open.md │ │ ├── media │ │ │ ├── MediaError │ │ │ │ └── mediaError.md │ │ │ ├── Parameters │ │ │ │ └── mediaError.md │ │ │ ├── capture │ │ │ │ ├── CaptureCB.md │ │ │ │ ├── CaptureError.md │ │ │ │ ├── CaptureErrorCB.md │ │ │ │ ├── ConfigurationData.md │ │ │ │ ├── MediaFile.getFormatData.md │ │ │ │ ├── MediaFile.md │ │ │ │ ├── MediaFileData.md │ │ │ │ ├── capture.md │ │ │ │ ├── captureAudio.md │ │ │ │ ├── captureAudioOptions.md │ │ │ │ ├── captureImage.md │ │ │ │ ├── captureImageOptions.md │ │ │ │ ├── captureVideo.md │ │ │ │ └── captureVideoOptions.md │ │ │ ├── media.getCurrentPosition.md │ │ │ ├── media.getDuration.md │ │ │ ├── media.md │ │ │ ├── media.pause.md │ │ │ ├── media.play.md │ │ │ ├── media.release.md │ │ │ ├── media.seekTo.md │ │ │ ├── media.setVolume.md │ │ │ ├── media.startRecord.md │ │ │ ├── media.stop.md │ │ │ └── media.stopRecord.md │ │ ├── notification │ │ │ ├── notification.alert.md │ │ │ ├── notification.beep.md │ │ │ ├── notification.confirm.md │ │ │ ├── notification.md │ │ │ ├── notification.prompt.md │ │ │ └── notification.vibrate.md │ │ ├── splashscreen │ │ │ ├── splashscreen.hide.md │ │ │ ├── splashscreen.md │ │ │ └── splashscreen.show.md │ │ └── storage │ │ │ ├── database │ │ │ └── database.md │ │ │ ├── localstorage │ │ │ └── localstorage.md │ │ │ ├── parameters │ │ │ ├── display_name.md │ │ │ ├── name.md │ │ │ ├── size.md │ │ │ └── version.md │ │ │ ├── sqlerror │ │ │ └── sqlerror.md │ │ │ ├── sqlresultset │ │ │ └── sqlresultset.md │ │ │ ├── sqlresultsetrowlist │ │ │ └── sqlresultsetrowlist.md │ │ │ ├── sqltransaction │ │ │ └── sqltransaction.md │ │ │ ├── storage.md │ │ │ └── storage.opendatabase.md │ ├── guide │ │ ├── cli │ │ │ └── index.md │ │ ├── command-line │ │ │ └── index.md │ │ ├── cordova-webview │ │ │ ├── android.md │ │ │ ├── index.md │ │ │ └── ios.md │ │ ├── getting-started │ │ │ ├── android │ │ │ │ └── index.md │ │ │ ├── blackberry │ │ │ │ └── index.md │ │ │ ├── blackberry10 │ │ │ │ └── index.md │ │ │ ├── index.md │ │ │ ├── ios │ │ │ │ └── index.md │ │ │ ├── tizen │ │ │ │ └── index.md │ │ │ ├── windows-8 │ │ │ │ └── index.md │ │ │ ├── windows-phone-7 │ │ │ │ └── index.md │ │ │ └── windows-phone-8 │ │ │ │ └── index.md │ │ ├── overview │ │ │ └── index.md │ │ ├── plugin-development │ │ │ ├── android │ │ │ │ └── index.md │ │ │ ├── blackberry │ │ │ │ └── index.md │ │ │ ├── blackberry10 │ │ │ │ └── index.md │ │ │ ├── index.md │ │ │ ├── ios │ │ │ │ └── index.md │ │ │ └── windows-phone │ │ │ │ └── index.md │ │ ├── privacy │ │ │ └── index.md │ │ ├── project-settings │ │ │ ├── android │ │ │ │ └── index.md │ │ │ ├── blackberry │ │ │ │ └── index.md │ │ │ ├── firefoxos │ │ │ │ └── index.md │ │ │ ├── index.md │ │ │ ├── ios │ │ │ │ └── index.md │ │ │ ├── windows8 │ │ │ │ └── index.md │ │ │ ├── wp7 │ │ │ │ └── index.md │ │ │ └── wp8 │ │ │ │ └── index.md │ │ ├── upgrading │ │ │ ├── android │ │ │ │ └── index.md │ │ │ ├── blackberry │ │ │ │ └── index.md │ │ │ ├── index.md │ │ │ ├── ios │ │ │ │ └── index.md │ │ │ ├── windows-8 │ │ │ │ └── index.md │ │ │ └── windows-phone │ │ │ │ └── index.md │ │ └── whitelist │ │ │ └── index.md │ └── index.md │ ├── 3.0.0 │ ├── config_ref │ │ └── index.md │ ├── cordova │ │ ├── accelerometer │ │ │ ├── acceleration │ │ │ │ └── acceleration.md │ │ │ ├── accelerometer.clearWatch.md │ │ │ ├── accelerometer.getCurrentAcceleration.md │ │ │ ├── accelerometer.md │ │ │ ├── accelerometer.watchAcceleration.md │ │ │ └── parameters │ │ │ │ ├── accelerometerError.md │ │ │ │ ├── accelerometerOptions.md │ │ │ │ └── accelerometerSuccess.md │ │ ├── camera │ │ │ ├── camera.cleanup.md │ │ │ ├── camera.getPicture.md │ │ │ ├── camera.md │ │ │ └── parameter │ │ │ │ ├── CameraPopoverHandle.md │ │ │ │ ├── CameraPopoverOptions.md │ │ │ │ ├── cameraError.md │ │ │ │ ├── cameraOptions.md │ │ │ │ └── cameraSuccess.md │ │ ├── compass │ │ │ ├── compass.clearWatch.md │ │ │ ├── compass.clearWatchFilter.md │ │ │ ├── compass.getCurrentHeading.md │ │ │ ├── compass.md │ │ │ ├── compass.watchHeading.md │ │ │ ├── compass.watchHeadingFilter.md │ │ │ ├── compassError │ │ │ │ └── compassError.md │ │ │ └── parameters │ │ │ │ ├── compassError.md │ │ │ │ ├── compassHeading.md │ │ │ │ ├── compassOptions.md │ │ │ │ └── compassSuccess.md │ │ ├── connection │ │ │ ├── connection.md │ │ │ └── connection.type.md │ │ ├── contacts │ │ │ ├── Contact │ │ │ │ └── contact.md │ │ │ ├── ContactAddress │ │ │ │ └── contactaddress.md │ │ │ ├── ContactError │ │ │ │ └── contactError.md │ │ │ ├── ContactField │ │ │ │ └── contactfield.md │ │ │ ├── ContactFindOptions │ │ │ │ └── contactfindoptions.md │ │ │ ├── ContactName │ │ │ │ └── contactname.md │ │ │ ├── ContactOrganization │ │ │ │ └── contactorganization.md │ │ │ ├── contacts.create.md │ │ │ ├── contacts.find.md │ │ │ ├── contacts.md │ │ │ └── parameters │ │ │ │ ├── contactError.md │ │ │ │ ├── contactFields.md │ │ │ │ ├── contactFindOptions.md │ │ │ │ └── contactSuccess.md │ │ ├── device │ │ │ ├── device.cordova.md │ │ │ ├── device.md │ │ │ ├── device.model.md │ │ │ ├── device.name.md │ │ │ ├── device.platform.md │ │ │ ├── device.uuid.md │ │ │ └── device.version.md │ │ ├── events │ │ │ ├── events.backbutton.md │ │ │ ├── events.batterycritical.md │ │ │ ├── events.batterylow.md │ │ │ ├── events.batterystatus.md │ │ │ ├── events.deviceready.md │ │ │ ├── events.endcallbutton.md │ │ │ ├── events.md │ │ │ ├── events.menubutton.md │ │ │ ├── events.offline.md │ │ │ ├── events.online.md │ │ │ ├── events.pause.md │ │ │ ├── events.resume.md │ │ │ ├── events.searchbutton.md │ │ │ ├── events.startcallbutton.md │ │ │ ├── events.volumedownbutton.md │ │ │ └── events.volumeupbutton.md │ │ ├── file │ │ │ ├── directoryentry │ │ │ │ └── directoryentry.md │ │ │ ├── directoryreader │ │ │ │ └── directoryreader.md │ │ │ ├── file.md │ │ │ ├── fileentry │ │ │ │ └── fileentry.md │ │ │ ├── fileerror │ │ │ │ └── fileerror.md │ │ │ ├── fileobj │ │ │ │ └── fileobj.md │ │ │ ├── filereader │ │ │ │ └── filereader.md │ │ │ ├── filesystem │ │ │ │ └── filesystem.md │ │ │ ├── filetransfer │ │ │ │ └── filetransfer.md │ │ │ ├── filetransfererror │ │ │ │ └── filetransfererror.md │ │ │ ├── fileuploadoptions │ │ │ │ └── fileuploadoptions.md │ │ │ ├── fileuploadresult │ │ │ │ └── fileuploadresult.md │ │ │ ├── filewriter │ │ │ │ └── filewriter.md │ │ │ ├── flags │ │ │ │ └── flags.md │ │ │ ├── localfilesystem │ │ │ │ └── localfilesystem.md │ │ │ └── metadata │ │ │ │ └── metadata.md │ │ ├── geolocation │ │ │ ├── Coordinates │ │ │ │ └── coordinates.md │ │ │ ├── Position │ │ │ │ └── position.md │ │ │ ├── PositionError │ │ │ │ └── positionError.md │ │ │ ├── geolocation.clearWatch.md │ │ │ ├── geolocation.getCurrentPosition.md │ │ │ ├── geolocation.md │ │ │ ├── geolocation.watchPosition.md │ │ │ └── parameters │ │ │ │ ├── geolocation.options.md │ │ │ │ ├── geolocationError.md │ │ │ │ └── geolocationSuccess.md │ │ ├── globalization │ │ │ ├── GlobalizationError │ │ │ │ └── globalizationerror.md │ │ │ ├── globalization.dateToString.md │ │ │ ├── globalization.getCurrencyPattern.md │ │ │ ├── globalization.getDateNames.md │ │ │ ├── globalization.getDatePattern.md │ │ │ ├── globalization.getFirstDayOfWeek.md │ │ │ ├── globalization.getLocaleName.md │ │ │ ├── globalization.getNumberPattern.md │ │ │ ├── globalization.getPreferredLanguage.md │ │ │ ├── globalization.isDayLightSavingsTime.md │ │ │ ├── globalization.md │ │ │ ├── globalization.numberToString.md │ │ │ ├── globalization.stringToDate.md │ │ │ └── globalization.stringToNumber.md │ │ ├── inappbrowser │ │ │ ├── inappbrowser.md │ │ │ └── window.open.md │ │ ├── media │ │ │ ├── MediaError │ │ │ │ └── mediaError.md │ │ │ ├── Parameters │ │ │ │ └── mediaError.md │ │ │ ├── capture │ │ │ │ ├── CaptureCB.md │ │ │ │ ├── CaptureError.md │ │ │ │ ├── CaptureErrorCB.md │ │ │ │ ├── ConfigurationData.md │ │ │ │ ├── MediaFile.getFormatData.md │ │ │ │ ├── MediaFile.md │ │ │ │ ├── MediaFileData.md │ │ │ │ ├── capture.md │ │ │ │ ├── captureAudio.md │ │ │ │ ├── captureAudioOptions.md │ │ │ │ ├── captureImage.md │ │ │ │ ├── captureImageOptions.md │ │ │ │ ├── captureVideo.md │ │ │ │ └── captureVideoOptions.md │ │ │ ├── media.getCurrentPosition.md │ │ │ ├── media.getDuration.md │ │ │ ├── media.md │ │ │ ├── media.pause.md │ │ │ ├── media.play.md │ │ │ ├── media.release.md │ │ │ ├── media.seekTo.md │ │ │ ├── media.setVolume.md │ │ │ ├── media.startRecord.md │ │ │ ├── media.stop.md │ │ │ └── media.stopRecord.md │ │ ├── notification │ │ │ ├── notification.alert.md │ │ │ ├── notification.beep.md │ │ │ ├── notification.confirm.md │ │ │ ├── notification.md │ │ │ ├── notification.prompt.md │ │ │ └── notification.vibrate.md │ │ ├── splashscreen │ │ │ ├── splashscreen.hide.md │ │ │ ├── splashscreen.md │ │ │ └── splashscreen.show.md │ │ └── storage │ │ │ ├── database │ │ │ └── database.md │ │ │ ├── localstorage │ │ │ └── localstorage.md │ │ │ ├── parameters │ │ │ ├── display_name.md │ │ │ ├── name.md │ │ │ ├── size.md │ │ │ └── version.md │ │ │ ├── sqlerror │ │ │ └── sqlerror.md │ │ │ ├── sqlresultset │ │ │ └── sqlresultset.md │ │ │ ├── sqlresultsetrowlist │ │ │ └── sqlresultsetrowlist.md │ │ │ ├── sqltransaction │ │ │ └── sqltransaction.md │ │ │ ├── storage.md │ │ │ └── storage.opendatabase.md │ ├── guide │ │ ├── appdev │ │ │ ├── privacy │ │ │ │ └── index.md │ │ │ └── whitelist │ │ │ │ └── index.md │ │ ├── cli │ │ │ └── index.md │ │ ├── hybrid │ │ │ ├── plugins │ │ │ │ └── index.md │ │ │ └── webviews │ │ │ │ └── index.md │ │ ├── overview │ │ │ └── index.md │ │ └── platforms │ │ │ ├── android │ │ │ ├── config.md │ │ │ ├── index.md │ │ │ ├── plugin.md │ │ │ ├── tools.md │ │ │ ├── upgrading.md │ │ │ └── webview.md │ │ │ ├── blackberry │ │ │ ├── config.md │ │ │ ├── index.md │ │ │ ├── plugin.md │ │ │ ├── tools.md │ │ │ └── upgrading.md │ │ │ ├── blackberry10 │ │ │ ├── config.md │ │ │ ├── index.md │ │ │ ├── plugin.md │ │ │ ├── tools.md │ │ │ └── upgrading.md │ │ │ ├── firefoxos │ │ │ └── config.md │ │ │ ├── index.md │ │ │ ├── ios │ │ │ ├── config.md │ │ │ ├── index.md │ │ │ ├── plugin.md │ │ │ ├── tools.md │ │ │ ├── upgrading.md │ │ │ └── webview.md │ │ │ ├── tizen │ │ │ └── index.md │ │ │ ├── win8 │ │ │ ├── index.md │ │ │ ├── tools.md │ │ │ └── upgrading.md │ │ │ ├── wp7 │ │ │ └── index.md │ │ │ └── wp8 │ │ │ ├── index.md │ │ │ ├── plugin.md │ │ │ ├── tools.md │ │ │ └── upgrading.md │ ├── index.md │ └── plugin_ref │ │ ├── plugman.md │ │ └── spec.md │ ├── 3.1.0 │ ├── config_ref │ │ └── index.md │ ├── cordova │ │ ├── accelerometer │ │ │ ├── acceleration │ │ │ │ └── acceleration.md │ │ │ ├── accelerometer.clearWatch.md │ │ │ ├── accelerometer.getCurrentAcceleration.md │ │ │ ├── accelerometer.md │ │ │ ├── accelerometer.watchAcceleration.md │ │ │ └── parameters │ │ │ │ ├── accelerometerError.md │ │ │ │ ├── accelerometerOptions.md │ │ │ │ └── accelerometerSuccess.md │ │ ├── camera │ │ │ ├── camera.cleanup.md │ │ │ ├── camera.getPicture.md │ │ │ ├── camera.md │ │ │ └── parameter │ │ │ │ ├── CameraPopoverHandle.md │ │ │ │ ├── CameraPopoverOptions.md │ │ │ │ ├── cameraError.md │ │ │ │ ├── cameraOptions.md │ │ │ │ └── cameraSuccess.md │ │ ├── compass │ │ │ ├── compass.clearWatch.md │ │ │ ├── compass.clearWatchFilter.md │ │ │ ├── compass.getCurrentHeading.md │ │ │ ├── compass.md │ │ │ ├── compass.watchHeading.md │ │ │ ├── compass.watchHeadingFilter.md │ │ │ ├── compassError │ │ │ │ └── compassError.md │ │ │ └── parameters │ │ │ │ ├── compassError.md │ │ │ │ ├── compassHeading.md │ │ │ │ ├── compassOptions.md │ │ │ │ └── compassSuccess.md │ │ ├── connection │ │ │ ├── connection.md │ │ │ └── connection.type.md │ │ ├── contacts │ │ │ ├── Contact │ │ │ │ └── contact.md │ │ │ ├── ContactAddress │ │ │ │ └── contactaddress.md │ │ │ ├── ContactError │ │ │ │ └── contactError.md │ │ │ ├── ContactField │ │ │ │ └── contactfield.md │ │ │ ├── ContactFindOptions │ │ │ │ └── contactfindoptions.md │ │ │ ├── ContactName │ │ │ │ └── contactname.md │ │ │ ├── ContactOrganization │ │ │ │ └── contactorganization.md │ │ │ ├── contacts.create.md │ │ │ ├── contacts.find.md │ │ │ ├── contacts.md │ │ │ └── parameters │ │ │ │ ├── contactError.md │ │ │ │ ├── contactFields.md │ │ │ │ ├── contactFindOptions.md │ │ │ │ └── contactSuccess.md │ │ ├── device │ │ │ ├── device.cordova.md │ │ │ ├── device.md │ │ │ ├── device.model.md │ │ │ ├── device.name.md │ │ │ ├── device.platform.md │ │ │ ├── device.uuid.md │ │ │ └── device.version.md │ │ ├── events │ │ │ ├── events.backbutton.md │ │ │ ├── events.batterycritical.md │ │ │ ├── events.batterylow.md │ │ │ ├── events.batterystatus.md │ │ │ ├── events.deviceready.md │ │ │ ├── events.endcallbutton.md │ │ │ ├── events.md │ │ │ ├── events.menubutton.md │ │ │ ├── events.offline.md │ │ │ ├── events.online.md │ │ │ ├── events.pause.md │ │ │ ├── events.resume.md │ │ │ ├── events.searchbutton.md │ │ │ ├── events.startcallbutton.md │ │ │ ├── events.volumedownbutton.md │ │ │ └── events.volumeupbutton.md │ │ ├── file │ │ │ ├── directoryentry │ │ │ │ └── directoryentry.md │ │ │ ├── directoryreader │ │ │ │ └── directoryreader.md │ │ │ ├── file.md │ │ │ ├── fileentry │ │ │ │ └── fileentry.md │ │ │ ├── fileerror │ │ │ │ └── fileerror.md │ │ │ ├── fileobj │ │ │ │ └── fileobj.md │ │ │ ├── filereader │ │ │ │ └── filereader.md │ │ │ ├── filesystem │ │ │ │ └── filesystem.md │ │ │ ├── filetransfer │ │ │ │ └── filetransfer.md │ │ │ ├── filetransfererror │ │ │ │ └── filetransfererror.md │ │ │ ├── fileuploadoptions │ │ │ │ └── fileuploadoptions.md │ │ │ ├── fileuploadresult │ │ │ │ └── fileuploadresult.md │ │ │ ├── filewriter │ │ │ │ └── filewriter.md │ │ │ ├── flags │ │ │ │ └── flags.md │ │ │ ├── localfilesystem │ │ │ │ └── localfilesystem.md │ │ │ └── metadata │ │ │ │ └── metadata.md │ │ ├── geolocation │ │ │ ├── Coordinates │ │ │ │ └── coordinates.md │ │ │ ├── Position │ │ │ │ └── position.md │ │ │ ├── PositionError │ │ │ │ └── positionError.md │ │ │ ├── geolocation.clearWatch.md │ │ │ ├── geolocation.getCurrentPosition.md │ │ │ ├── geolocation.md │ │ │ ├── geolocation.watchPosition.md │ │ │ └── parameters │ │ │ │ ├── geolocation.options.md │ │ │ │ ├── geolocationError.md │ │ │ │ └── geolocationSuccess.md │ │ ├── globalization │ │ │ ├── GlobalizationError │ │ │ │ └── globalizationerror.md │ │ │ ├── globalization.dateToString.md │ │ │ ├── globalization.getCurrencyPattern.md │ │ │ ├── globalization.getDateNames.md │ │ │ ├── globalization.getDatePattern.md │ │ │ ├── globalization.getFirstDayOfWeek.md │ │ │ ├── globalization.getLocaleName.md │ │ │ ├── globalization.getNumberPattern.md │ │ │ ├── globalization.getPreferredLanguage.md │ │ │ ├── globalization.isDayLightSavingsTime.md │ │ │ ├── globalization.md │ │ │ ├── globalization.numberToString.md │ │ │ ├── globalization.stringToDate.md │ │ │ └── globalization.stringToNumber.md │ │ ├── inappbrowser │ │ │ ├── inappbrowser.md │ │ │ └── window.open.md │ │ ├── media │ │ │ ├── MediaError │ │ │ │ └── mediaError.md │ │ │ ├── Parameters │ │ │ │ └── mediaError.md │ │ │ ├── capture │ │ │ │ ├── CaptureCB.md │ │ │ │ ├── CaptureError.md │ │ │ │ ├── CaptureErrorCB.md │ │ │ │ ├── ConfigurationData.md │ │ │ │ ├── MediaFile.getFormatData.md │ │ │ │ ├── MediaFile.md │ │ │ │ ├── MediaFileData.md │ │ │ │ ├── capture.md │ │ │ │ ├── captureAudio.md │ │ │ │ ├── captureAudioOptions.md │ │ │ │ ├── captureImage.md │ │ │ │ ├── captureImageOptions.md │ │ │ │ ├── captureVideo.md │ │ │ │ └── captureVideoOptions.md │ │ │ ├── media.getCurrentPosition.md │ │ │ ├── media.getDuration.md │ │ │ ├── media.md │ │ │ ├── media.pause.md │ │ │ ├── media.play.md │ │ │ ├── media.release.md │ │ │ ├── media.seekTo.md │ │ │ ├── media.setVolume.md │ │ │ ├── media.startRecord.md │ │ │ ├── media.stop.md │ │ │ └── media.stopRecord.md │ │ ├── notification │ │ │ ├── notification.alert.md │ │ │ ├── notification.beep.md │ │ │ ├── notification.confirm.md │ │ │ ├── notification.md │ │ │ ├── notification.prompt.md │ │ │ └── notification.vibrate.md │ │ ├── splashscreen │ │ │ ├── splashscreen.hide.md │ │ │ ├── splashscreen.md │ │ │ └── splashscreen.show.md │ │ └── storage │ │ │ ├── database │ │ │ └── database.md │ │ │ ├── localstorage │ │ │ └── localstorage.md │ │ │ ├── parameters │ │ │ ├── display_name.md │ │ │ ├── name.md │ │ │ ├── size.md │ │ │ └── version.md │ │ │ ├── sqlerror │ │ │ └── sqlerror.md │ │ │ ├── sqlresultset │ │ │ └── sqlresultset.md │ │ │ ├── sqlresultsetrowlist │ │ │ └── sqlresultsetrowlist.md │ │ │ ├── sqltransaction │ │ │ └── sqltransaction.md │ │ │ ├── storage.md │ │ │ └── storage.opendatabase.md │ ├── guide │ │ ├── appdev │ │ │ ├── privacy │ │ │ │ └── index.md │ │ │ └── whitelist │ │ │ │ └── index.md │ │ ├── cli │ │ │ └── index.md │ │ ├── hybrid │ │ │ ├── plugins │ │ │ │ └── index.md │ │ │ └── webviews │ │ │ │ └── index.md │ │ ├── overview │ │ │ └── index.md │ │ └── platforms │ │ │ ├── android │ │ │ ├── config.md │ │ │ ├── index.md │ │ │ ├── plugin.md │ │ │ ├── tools.md │ │ │ ├── upgrading.md │ │ │ └── webview.md │ │ │ ├── blackberry │ │ │ ├── index.md │ │ │ ├── plugin.md │ │ │ ├── tools.md │ │ │ └── upgrading.md │ │ │ ├── blackberry10 │ │ │ ├── config.md │ │ │ ├── index.md │ │ │ ├── plugin.md │ │ │ ├── tools.md │ │ │ └── upgrading.md │ │ │ ├── index.md │ │ │ ├── ios │ │ │ ├── config.md │ │ │ ├── index.md │ │ │ ├── plugin.md │ │ │ ├── tools.md │ │ │ ├── upgrading.md │ │ │ └── webview.md │ │ │ ├── tizen │ │ │ └── index.md │ │ │ ├── win8 │ │ │ ├── index.md │ │ │ ├── tools.md │ │ │ └── upgrading.md │ │ │ ├── wp7 │ │ │ └── index.md │ │ │ └── wp8 │ │ │ ├── index.md │ │ │ ├── plugin.md │ │ │ ├── tools.md │ │ │ └── upgrading.md │ ├── index.md │ └── plugin_ref │ │ ├── plugman.md │ │ └── spec.md │ ├── 3.2.0 │ ├── config_ref │ │ ├── images.md │ │ └── index.md │ ├── cordova │ │ ├── accelerometer │ │ │ ├── acceleration │ │ │ │ └── acceleration.md │ │ │ ├── accelerometer.clearWatch.md │ │ │ ├── accelerometer.getCurrentAcceleration.md │ │ │ ├── accelerometer.md │ │ │ ├── accelerometer.watchAcceleration.md │ │ │ └── parameters │ │ │ │ ├── accelerometerError.md │ │ │ │ ├── accelerometerOptions.md │ │ │ │ └── accelerometerSuccess.md │ │ ├── camera │ │ │ ├── camera.cleanup.md │ │ │ ├── camera.getPicture.md │ │ │ ├── camera.md │ │ │ └── parameter │ │ │ │ ├── CameraPopoverHandle.md │ │ │ │ ├── CameraPopoverOptions.md │ │ │ │ ├── cameraError.md │ │ │ │ ├── cameraOptions.md │ │ │ │ └── cameraSuccess.md │ │ ├── compass │ │ │ ├── compass.clearWatch.md │ │ │ ├── compass.clearWatchFilter.md │ │ │ ├── compass.getCurrentHeading.md │ │ │ ├── compass.md │ │ │ ├── compass.watchHeading.md │ │ │ ├── compass.watchHeadingFilter.md │ │ │ ├── compassError │ │ │ │ └── compassError.md │ │ │ └── parameters │ │ │ │ ├── compassError.md │ │ │ │ ├── compassHeading.md │ │ │ │ ├── compassOptions.md │ │ │ │ └── compassSuccess.md │ │ ├── connection │ │ │ ├── connection.md │ │ │ └── connection.type.md │ │ ├── contacts │ │ │ ├── Contact │ │ │ │ └── contact.md │ │ │ ├── ContactAddress │ │ │ │ └── contactaddress.md │ │ │ ├── ContactError │ │ │ │ └── contactError.md │ │ │ ├── ContactField │ │ │ │ └── contactfield.md │ │ │ ├── ContactFindOptions │ │ │ │ └── contactfindoptions.md │ │ │ ├── ContactName │ │ │ │ └── contactname.md │ │ │ ├── ContactOrganization │ │ │ │ └── contactorganization.md │ │ │ ├── contacts.create.md │ │ │ ├── contacts.find.md │ │ │ ├── contacts.md │ │ │ └── parameters │ │ │ │ ├── contactError.md │ │ │ │ ├── contactFields.md │ │ │ │ ├── contactFindOptions.md │ │ │ │ └── contactSuccess.md │ │ ├── device │ │ │ ├── device.cordova.md │ │ │ ├── device.md │ │ │ ├── device.model.md │ │ │ ├── device.name.md │ │ │ ├── device.platform.md │ │ │ ├── device.uuid.md │ │ │ └── device.version.md │ │ ├── events │ │ │ ├── events.backbutton.md │ │ │ ├── events.batterycritical.md │ │ │ ├── events.batterylow.md │ │ │ ├── events.batterystatus.md │ │ │ ├── events.deviceready.md │ │ │ ├── events.endcallbutton.md │ │ │ ├── events.md │ │ │ ├── events.menubutton.md │ │ │ ├── events.offline.md │ │ │ ├── events.online.md │ │ │ ├── events.pause.md │ │ │ ├── events.resume.md │ │ │ ├── events.searchbutton.md │ │ │ ├── events.startcallbutton.md │ │ │ ├── events.volumedownbutton.md │ │ │ └── events.volumeupbutton.md │ │ ├── file │ │ │ ├── directoryentry │ │ │ │ └── directoryentry.md │ │ │ ├── directoryreader │ │ │ │ └── directoryreader.md │ │ │ ├── file.md │ │ │ ├── fileentry │ │ │ │ └── fileentry.md │ │ │ ├── fileerror │ │ │ │ └── fileerror.md │ │ │ ├── fileobj │ │ │ │ └── fileobj.md │ │ │ ├── filereader │ │ │ │ └── filereader.md │ │ │ ├── filesystem │ │ │ │ └── filesystem.md │ │ │ ├── filetransfer │ │ │ │ └── filetransfer.md │ │ │ ├── filetransfererror │ │ │ │ └── filetransfererror.md │ │ │ ├── fileuploadoptions │ │ │ │ └── fileuploadoptions.md │ │ │ ├── fileuploadresult │ │ │ │ └── fileuploadresult.md │ │ │ ├── filewriter │ │ │ │ └── filewriter.md │ │ │ ├── flags │ │ │ │ └── flags.md │ │ │ ├── localfilesystem │ │ │ │ └── localfilesystem.md │ │ │ └── metadata │ │ │ │ └── metadata.md │ │ ├── geolocation │ │ │ ├── Coordinates │ │ │ │ └── coordinates.md │ │ │ ├── Position │ │ │ │ └── position.md │ │ │ ├── PositionError │ │ │ │ └── positionError.md │ │ │ ├── geolocation.clearWatch.md │ │ │ ├── geolocation.getCurrentPosition.md │ │ │ ├── geolocation.md │ │ │ ├── geolocation.watchPosition.md │ │ │ └── parameters │ │ │ │ ├── geolocation.options.md │ │ │ │ ├── geolocationError.md │ │ │ │ └── geolocationSuccess.md │ │ ├── globalization │ │ │ ├── GlobalizationError │ │ │ │ └── globalizationerror.md │ │ │ ├── globalization.dateToString.md │ │ │ ├── globalization.getCurrencyPattern.md │ │ │ ├── globalization.getDateNames.md │ │ │ ├── globalization.getDatePattern.md │ │ │ ├── globalization.getFirstDayOfWeek.md │ │ │ ├── globalization.getLocaleName.md │ │ │ ├── globalization.getNumberPattern.md │ │ │ ├── globalization.getPreferredLanguage.md │ │ │ ├── globalization.isDayLightSavingsTime.md │ │ │ ├── globalization.md │ │ │ ├── globalization.numberToString.md │ │ │ ├── globalization.stringToDate.md │ │ │ └── globalization.stringToNumber.md │ │ ├── inappbrowser │ │ │ ├── inappbrowser.md │ │ │ └── window.open.md │ │ ├── media │ │ │ ├── MediaError │ │ │ │ └── mediaError.md │ │ │ ├── Parameters │ │ │ │ └── mediaError.md │ │ │ ├── capture │ │ │ │ ├── CaptureCB.md │ │ │ │ ├── CaptureError.md │ │ │ │ ├── CaptureErrorCB.md │ │ │ │ ├── ConfigurationData.md │ │ │ │ ├── MediaFile.getFormatData.md │ │ │ │ ├── MediaFile.md │ │ │ │ ├── MediaFileData.md │ │ │ │ ├── capture.md │ │ │ │ ├── captureAudio.md │ │ │ │ ├── captureAudioOptions.md │ │ │ │ ├── captureImage.md │ │ │ │ ├── captureImageOptions.md │ │ │ │ ├── captureVideo.md │ │ │ │ └── captureVideoOptions.md │ │ │ ├── media.getCurrentPosition.md │ │ │ ├── media.getDuration.md │ │ │ ├── media.md │ │ │ ├── media.pause.md │ │ │ ├── media.play.md │ │ │ ├── media.release.md │ │ │ ├── media.seekTo.md │ │ │ ├── media.setVolume.md │ │ │ ├── media.startRecord.md │ │ │ ├── media.stop.md │ │ │ └── media.stopRecord.md │ │ ├── notification │ │ │ ├── notification.alert.md │ │ │ ├── notification.beep.md │ │ │ ├── notification.confirm.md │ │ │ ├── notification.md │ │ │ ├── notification.prompt.md │ │ │ └── notification.vibrate.md │ │ ├── splashscreen │ │ │ ├── splashscreen.hide.md │ │ │ ├── splashscreen.md │ │ │ └── splashscreen.show.md │ │ └── storage │ │ │ └── storage.md │ ├── guide │ │ ├── appdev │ │ │ ├── privacy │ │ │ │ └── index.md │ │ │ └── whitelist │ │ │ │ └── index.md │ │ ├── cli │ │ │ └── index.md │ │ ├── hybrid │ │ │ ├── plugins │ │ │ │ └── index.md │ │ │ └── webviews │ │ │ │ └── index.md │ │ ├── overview │ │ │ └── index.md │ │ ├── platforms │ │ │ ├── amazonfireos │ │ │ │ ├── config.md │ │ │ │ ├── index.md │ │ │ │ ├── plugin.md │ │ │ │ └── webview.md │ │ │ ├── android │ │ │ │ ├── config.md │ │ │ │ ├── index.md │ │ │ │ ├── plugin.md │ │ │ │ ├── tools.md │ │ │ │ ├── upgrading.md │ │ │ │ └── webview.md │ │ │ ├── blackberry │ │ │ │ ├── index.md │ │ │ │ ├── plugin.md │ │ │ │ ├── tools.md │ │ │ │ └── upgrading.md │ │ │ ├── blackberry10 │ │ │ │ ├── config.md │ │ │ │ ├── index.md │ │ │ │ ├── plugin.md │ │ │ │ ├── tools.md │ │ │ │ └── upgrading.md │ │ │ ├── index.md │ │ │ ├── ios │ │ │ │ ├── config.md │ │ │ │ ├── index.md │ │ │ │ ├── plugin.md │ │ │ │ ├── tools.md │ │ │ │ ├── upgrading.md │ │ │ │ └── webview.md │ │ │ ├── tizen │ │ │ │ └── index.md │ │ │ ├── win8 │ │ │ │ ├── index.md │ │ │ │ ├── tools.md │ │ │ │ └── upgrading.md │ │ │ ├── wp7 │ │ │ │ └── index.md │ │ │ └── wp8 │ │ │ │ ├── index.md │ │ │ │ ├── plugin.md │ │ │ │ ├── tools.md │ │ │ │ └── upgrading.md │ │ └── support │ │ │ └── index.md │ ├── index.md │ └── plugin_ref │ │ ├── plugman.md │ │ └── spec.md │ ├── 3.3.0 │ ├── config_ref │ │ ├── images.md │ │ └── index.md │ ├── cordova │ │ ├── accelerometer │ │ │ ├── acceleration │ │ │ │ └── acceleration.md │ │ │ ├── accelerometer.clearWatch.md │ │ │ ├── accelerometer.getCurrentAcceleration.md │ │ │ ├── accelerometer.md │ │ │ ├── accelerometer.watchAcceleration.md │ │ │ └── parameters │ │ │ │ ├── accelerometerError.md │ │ │ │ ├── accelerometerOptions.md │ │ │ │ └── accelerometerSuccess.md │ │ ├── camera │ │ │ ├── camera.cleanup.md │ │ │ ├── camera.getPicture.md │ │ │ ├── camera.md │ │ │ └── parameter │ │ │ │ ├── CameraPopoverHandle.md │ │ │ │ ├── CameraPopoverOptions.md │ │ │ │ ├── cameraError.md │ │ │ │ ├── cameraOptions.md │ │ │ │ └── cameraSuccess.md │ │ ├── compass │ │ │ ├── compass.clearWatch.md │ │ │ ├── compass.clearWatchFilter.md │ │ │ ├── compass.getCurrentHeading.md │ │ │ ├── compass.md │ │ │ ├── compass.watchHeading.md │ │ │ ├── compass.watchHeadingFilter.md │ │ │ ├── compassError │ │ │ │ └── compassError.md │ │ │ └── parameters │ │ │ │ ├── compassError.md │ │ │ │ ├── compassHeading.md │ │ │ │ ├── compassOptions.md │ │ │ │ └── compassSuccess.md │ │ ├── connection │ │ │ ├── connection.md │ │ │ └── connection.type.md │ │ ├── contacts │ │ │ ├── Contact │ │ │ │ └── contact.md │ │ │ ├── ContactAddress │ │ │ │ └── contactaddress.md │ │ │ ├── ContactError │ │ │ │ └── contactError.md │ │ │ ├── ContactField │ │ │ │ └── contactfield.md │ │ │ ├── ContactFindOptions │ │ │ │ └── contactfindoptions.md │ │ │ ├── ContactName │ │ │ │ └── contactname.md │ │ │ ├── ContactOrganization │ │ │ │ └── contactorganization.md │ │ │ ├── contacts.create.md │ │ │ ├── contacts.find.md │ │ │ ├── contacts.md │ │ │ └── parameters │ │ │ │ ├── contactError.md │ │ │ │ ├── contactFields.md │ │ │ │ ├── contactFindOptions.md │ │ │ │ └── contactSuccess.md │ │ ├── device │ │ │ ├── device.cordova.md │ │ │ ├── device.md │ │ │ ├── device.model.md │ │ │ ├── device.name.md │ │ │ ├── device.platform.md │ │ │ ├── device.uuid.md │ │ │ └── device.version.md │ │ ├── events │ │ │ ├── events.backbutton.md │ │ │ ├── events.batterycritical.md │ │ │ ├── events.batterylow.md │ │ │ ├── events.batterystatus.md │ │ │ ├── events.deviceready.md │ │ │ ├── events.endcallbutton.md │ │ │ ├── events.md │ │ │ ├── events.menubutton.md │ │ │ ├── events.offline.md │ │ │ ├── events.online.md │ │ │ ├── events.pause.md │ │ │ ├── events.resume.md │ │ │ ├── events.searchbutton.md │ │ │ ├── events.startcallbutton.md │ │ │ ├── events.volumedownbutton.md │ │ │ └── events.volumeupbutton.md │ │ ├── file │ │ │ ├── directoryentry │ │ │ │ └── directoryentry.md │ │ │ ├── directoryreader │ │ │ │ └── directoryreader.md │ │ │ ├── file.md │ │ │ ├── fileentry │ │ │ │ └── fileentry.md │ │ │ ├── fileerror │ │ │ │ └── fileerror.md │ │ │ ├── fileobj │ │ │ │ └── fileobj.md │ │ │ ├── filereader │ │ │ │ └── filereader.md │ │ │ ├── filesystem │ │ │ │ └── filesystem.md │ │ │ ├── filetransfer │ │ │ │ └── filetransfer.md │ │ │ ├── filetransfererror │ │ │ │ └── filetransfererror.md │ │ │ ├── fileuploadoptions │ │ │ │ └── fileuploadoptions.md │ │ │ ├── fileuploadresult │ │ │ │ └── fileuploadresult.md │ │ │ ├── filewriter │ │ │ │ └── filewriter.md │ │ │ ├── flags │ │ │ │ └── flags.md │ │ │ ├── localfilesystem │ │ │ │ └── localfilesystem.md │ │ │ └── metadata │ │ │ │ └── metadata.md │ │ ├── geolocation │ │ │ ├── Coordinates │ │ │ │ └── coordinates.md │ │ │ ├── Position │ │ │ │ └── position.md │ │ │ ├── PositionError │ │ │ │ └── positionError.md │ │ │ ├── geolocation.clearWatch.md │ │ │ ├── geolocation.getCurrentPosition.md │ │ │ ├── geolocation.md │ │ │ ├── geolocation.watchPosition.md │ │ │ └── parameters │ │ │ │ ├── geolocation.options.md │ │ │ │ ├── geolocationError.md │ │ │ │ └── geolocationSuccess.md │ │ ├── globalization │ │ │ ├── GlobalizationError │ │ │ │ └── globalizationerror.md │ │ │ ├── globalization.dateToString.md │ │ │ ├── globalization.getCurrencyPattern.md │ │ │ ├── globalization.getDateNames.md │ │ │ ├── globalization.getDatePattern.md │ │ │ ├── globalization.getFirstDayOfWeek.md │ │ │ ├── globalization.getLocaleName.md │ │ │ ├── globalization.getNumberPattern.md │ │ │ ├── globalization.getPreferredLanguage.md │ │ │ ├── globalization.isDayLightSavingsTime.md │ │ │ ├── globalization.md │ │ │ ├── globalization.numberToString.md │ │ │ ├── globalization.stringToDate.md │ │ │ └── globalization.stringToNumber.md │ │ ├── inappbrowser │ │ │ ├── inappbrowser.md │ │ │ └── window.open.md │ │ ├── media │ │ │ ├── MediaError │ │ │ │ └── mediaError.md │ │ │ ├── Parameters │ │ │ │ └── mediaError.md │ │ │ ├── capture │ │ │ │ ├── CaptureCB.md │ │ │ │ ├── CaptureError.md │ │ │ │ ├── CaptureErrorCB.md │ │ │ │ ├── ConfigurationData.md │ │ │ │ ├── MediaFile.getFormatData.md │ │ │ │ ├── MediaFile.md │ │ │ │ ├── MediaFileData.md │ │ │ │ ├── capture.md │ │ │ │ ├── captureAudio.md │ │ │ │ ├── captureAudioOptions.md │ │ │ │ ├── captureImage.md │ │ │ │ ├── captureImageOptions.md │ │ │ │ ├── captureVideo.md │ │ │ │ └── captureVideoOptions.md │ │ │ ├── media.getCurrentPosition.md │ │ │ ├── media.getDuration.md │ │ │ ├── media.md │ │ │ ├── media.pause.md │ │ │ ├── media.play.md │ │ │ ├── media.release.md │ │ │ ├── media.seekTo.md │ │ │ ├── media.setVolume.md │ │ │ ├── media.startRecord.md │ │ │ ├── media.stop.md │ │ │ └── media.stopRecord.md │ │ ├── notification │ │ │ ├── notification.alert.md │ │ │ ├── notification.beep.md │ │ │ ├── notification.confirm.md │ │ │ ├── notification.md │ │ │ ├── notification.prompt.md │ │ │ └── notification.vibrate.md │ │ ├── splashscreen │ │ │ ├── splashscreen.hide.md │ │ │ ├── splashscreen.md │ │ │ └── splashscreen.show.md │ │ └── storage │ │ │ └── storage.md │ ├── guide │ │ ├── appdev │ │ │ ├── privacy │ │ │ │ └── index.md │ │ │ └── whitelist │ │ │ │ └── index.md │ │ ├── cli │ │ │ └── index.md │ │ ├── hybrid │ │ │ ├── plugins │ │ │ │ └── index.md │ │ │ └── webviews │ │ │ │ └── index.md │ │ ├── overview │ │ │ └── index.md │ │ ├── platforms │ │ │ ├── amazonfireos │ │ │ │ ├── config.md │ │ │ │ ├── index.md │ │ │ │ ├── plugin.md │ │ │ │ └── webview.md │ │ │ ├── android │ │ │ │ ├── config.md │ │ │ │ ├── index.md │ │ │ │ ├── plugin.md │ │ │ │ ├── tools.md │ │ │ │ ├── upgrading.md │ │ │ │ └── webview.md │ │ │ ├── blackberry10 │ │ │ │ ├── config.md │ │ │ │ ├── index.md │ │ │ │ ├── plugin.md │ │ │ │ ├── tools.md │ │ │ │ └── upgrading.md │ │ │ ├── index.md │ │ │ ├── ios │ │ │ │ ├── config.md │ │ │ │ ├── index.md │ │ │ │ ├── plugin.md │ │ │ │ ├── tools.md │ │ │ │ ├── upgrading.md │ │ │ │ └── webview.md │ │ │ ├── tizen │ │ │ │ └── index.md │ │ │ ├── ubuntu │ │ │ │ └── index.md │ │ │ ├── win8 │ │ │ │ ├── index.md │ │ │ │ ├── tools.md │ │ │ │ └── upgrading.md │ │ │ ├── wp7 │ │ │ │ └── index.md │ │ │ └── wp8 │ │ │ │ ├── index.md │ │ │ │ ├── plugin.md │ │ │ │ ├── tools.md │ │ │ │ └── upgrading.md │ │ └── support │ │ │ └── index.md │ ├── index.md │ └── plugin_ref │ │ ├── plugman.md │ │ └── spec.md │ ├── 3.4.0 │ ├── config_ref │ │ ├── images.md │ │ └── index.md │ ├── cordova │ │ ├── events │ │ │ ├── events.backbutton.md │ │ │ ├── events.deviceready.md │ │ │ ├── events.endcallbutton.md │ │ │ ├── events.md │ │ │ ├── events.menubutton.md │ │ │ ├── events.pause.md │ │ │ ├── events.resume.md │ │ │ ├── events.searchbutton.md │ │ │ ├── events.startcallbutton.md │ │ │ ├── events.volumedownbutton.md │ │ │ └── events.volumeupbutton.md │ │ ├── plugins │ │ │ └── pluginapis.md │ │ └── storage │ │ │ └── storage.md │ ├── guide │ │ ├── appdev │ │ │ ├── privacy │ │ │ │ └── index.md │ │ │ └── whitelist │ │ │ │ └── index.md │ │ ├── cli │ │ │ └── index.md │ │ ├── hybrid │ │ │ ├── plugins │ │ │ │ └── index.md │ │ │ └── webviews │ │ │ │ └── index.md │ │ ├── overview │ │ │ └── index.md │ │ ├── platforms │ │ │ ├── amazonfireos │ │ │ │ ├── config.md │ │ │ │ ├── index.md │ │ │ │ ├── plugin.md │ │ │ │ └── webview.md │ │ │ ├── android │ │ │ │ ├── config.md │ │ │ │ ├── index.md │ │ │ │ ├── plugin.md │ │ │ │ ├── tools.md │ │ │ │ ├── upgrading.md │ │ │ │ └── webview.md │ │ │ ├── blackberry10 │ │ │ │ ├── config.md │ │ │ │ ├── index.md │ │ │ │ ├── plugin.md │ │ │ │ ├── tools.md │ │ │ │ └── upgrading.md │ │ │ ├── firefoxos │ │ │ │ └── index.md │ │ │ ├── index.md │ │ │ ├── ios │ │ │ │ ├── config.md │ │ │ │ ├── index.md │ │ │ │ ├── plugin.md │ │ │ │ ├── tools.md │ │ │ │ ├── upgrading.md │ │ │ │ └── webview.md │ │ │ ├── tizen │ │ │ │ └── index.md │ │ │ ├── ubuntu │ │ │ │ └── index.md │ │ │ ├── win8 │ │ │ │ ├── index.md │ │ │ │ ├── tools.md │ │ │ │ └── upgrading.md │ │ │ ├── wp7 │ │ │ │ └── index.md │ │ │ └── wp8 │ │ │ │ ├── index.md │ │ │ │ ├── plugin.md │ │ │ │ ├── tools.md │ │ │ │ └── upgrading.md │ │ └── support │ │ │ └── index.md │ ├── index.md │ └── plugin_ref │ │ ├── plugman.md │ │ └── spec.md │ ├── 3.5.0 │ ├── config_ref │ │ ├── images.md │ │ └── index.md │ ├── cordova │ │ ├── events │ │ │ ├── events.backbutton.md │ │ │ ├── events.deviceready.md │ │ │ ├── events.endcallbutton.md │ │ │ ├── events.md │ │ │ ├── events.menubutton.md │ │ │ ├── events.pause.md │ │ │ ├── events.resume.md │ │ │ ├── events.searchbutton.md │ │ │ ├── events.startcallbutton.md │ │ │ ├── events.volumedownbutton.md │ │ │ └── events.volumeupbutton.md │ │ ├── plugins │ │ │ └── pluginapis.md │ │ └── storage │ │ │ └── storage.md │ ├── guide │ │ ├── appdev │ │ │ ├── privacy │ │ │ │ └── index.md │ │ │ ├── security │ │ │ │ └── index.md │ │ │ └── whitelist │ │ │ │ └── index.md │ │ ├── cli │ │ │ └── index.md │ │ ├── hybrid │ │ │ ├── plugins │ │ │ │ └── index.md │ │ │ └── webviews │ │ │ │ └── index.md │ │ ├── next │ │ │ └── index.md │ │ ├── overview │ │ │ └── index.md │ │ ├── platforms │ │ │ ├── amazonfireos │ │ │ │ ├── config.md │ │ │ │ ├── index.md │ │ │ │ ├── plugin.md │ │ │ │ └── webview.md │ │ │ ├── android │ │ │ │ ├── config.md │ │ │ │ ├── index.md │ │ │ │ ├── plugin.md │ │ │ │ ├── tools.md │ │ │ │ ├── upgrade.md │ │ │ │ └── webview.md │ │ │ ├── blackberry │ │ │ │ └── upgrade.md │ │ │ ├── blackberry10 │ │ │ │ ├── config.md │ │ │ │ ├── index.md │ │ │ │ ├── plugin.md │ │ │ │ ├── tools.md │ │ │ │ └── upgrade.md │ │ │ ├── firefoxos │ │ │ │ └── index.md │ │ │ ├── index.md │ │ │ ├── ios │ │ │ │ ├── config.md │ │ │ │ ├── index.md │ │ │ │ ├── plugin.md │ │ │ │ ├── tools.md │ │ │ │ ├── upgrade.md │ │ │ │ └── webview.md │ │ │ ├── tizen │ │ │ │ └── index.md │ │ │ ├── ubuntu │ │ │ │ └── index.md │ │ │ ├── win8 │ │ │ │ ├── index.md │ │ │ │ └── upgrade.md │ │ │ └── wp8 │ │ │ │ ├── index.md │ │ │ │ ├── parallels.md │ │ │ │ ├── plugin.md │ │ │ │ ├── upgrade.md │ │ │ │ └── vmware.md │ │ └── support │ │ │ └── index.md │ ├── index.md │ └── plugin_ref │ │ ├── plugman.md │ │ └── spec.md │ ├── 3.6.0 │ ├── config_ref │ │ ├── images.md │ │ └── index.md │ ├── cordova │ │ ├── events │ │ │ ├── events.backbutton.md │ │ │ ├── events.deviceready.md │ │ │ ├── events.endcallbutton.md │ │ │ ├── events.md │ │ │ ├── events.menubutton.md │ │ │ ├── events.pause.md │ │ │ ├── events.resume.md │ │ │ ├── events.searchbutton.md │ │ │ ├── events.startcallbutton.md │ │ │ ├── events.volumedownbutton.md │ │ │ └── events.volumeupbutton.md │ │ ├── plugins │ │ │ └── pluginapis.md │ │ └── storage │ │ │ └── storage.md │ ├── guide │ │ ├── appdev │ │ │ ├── privacy │ │ │ │ └── index.md │ │ │ ├── security │ │ │ │ └── index.md │ │ │ └── whitelist │ │ │ │ └── index.md │ │ ├── cli │ │ │ └── index.md │ │ ├── hybrid │ │ │ ├── plugins │ │ │ │ └── index.md │ │ │ └── webviews │ │ │ │ └── index.md │ │ ├── next │ │ │ └── index.md │ │ ├── overview │ │ │ └── index.md │ │ ├── platforms │ │ │ ├── amazonfireos │ │ │ │ ├── config.md │ │ │ │ ├── index.md │ │ │ │ ├── plugin.md │ │ │ │ └── webview.md │ │ │ ├── android │ │ │ │ ├── config.md │ │ │ │ ├── index.md │ │ │ │ ├── plugin.md │ │ │ │ ├── tools.md │ │ │ │ ├── upgrade.md │ │ │ │ └── webview.md │ │ │ ├── blackberry │ │ │ │ └── upgrade.md │ │ │ ├── blackberry10 │ │ │ │ ├── config.md │ │ │ │ ├── index.md │ │ │ │ ├── plugin.md │ │ │ │ ├── tools.md │ │ │ │ └── upgrade.md │ │ │ ├── firefoxos │ │ │ │ └── index.md │ │ │ ├── index.md │ │ │ ├── ios │ │ │ │ ├── config.md │ │ │ │ ├── index.md │ │ │ │ ├── plugin.md │ │ │ │ ├── tools.md │ │ │ │ ├── upgrade.md │ │ │ │ └── webview.md │ │ │ ├── tizen │ │ │ │ └── index.md │ │ │ ├── ubuntu │ │ │ │ └── index.md │ │ │ ├── win8 │ │ │ │ ├── index.md │ │ │ │ ├── plugin.md │ │ │ │ └── upgrade.md │ │ │ └── wp8 │ │ │ │ ├── index.md │ │ │ │ ├── parallels.md │ │ │ │ ├── plugin.md │ │ │ │ ├── upgrade.md │ │ │ │ ├── vmware.md │ │ │ │ └── webview.md │ │ └── support │ │ │ └── index.md │ ├── index.md │ └── plugin_ref │ │ ├── plugman.md │ │ └── spec.md │ ├── 4.0.0 │ ├── config_ref │ │ ├── images.md │ │ └── index.md │ ├── cordova │ │ ├── events │ │ │ ├── events.backbutton.md │ │ │ ├── events.deviceready.md │ │ │ ├── events.endcallbutton.md │ │ │ ├── events.md │ │ │ ├── events.menubutton.md │ │ │ ├── events.pause.md │ │ │ ├── events.resume.md │ │ │ ├── events.searchbutton.md │ │ │ ├── events.startcallbutton.md │ │ │ ├── events.volumedownbutton.md │ │ │ └── events.volumeupbutton.md │ │ ├── plugins │ │ │ └── pluginapis.md │ │ └── storage │ │ │ └── storage.md │ ├── guide │ │ ├── appdev │ │ │ ├── privacy │ │ │ │ └── index.md │ │ │ ├── security │ │ │ │ └── index.md │ │ │ └── whitelist │ │ │ │ └── index.md │ │ ├── cli │ │ │ └── index.md │ │ ├── hybrid │ │ │ ├── plugins │ │ │ │ └── index.md │ │ │ └── webviews │ │ │ │ └── index.md │ │ ├── next │ │ │ └── index.md │ │ ├── overview │ │ │ └── index.md │ │ ├── platforms │ │ │ ├── amazonfireos │ │ │ │ ├── config.md │ │ │ │ ├── index.md │ │ │ │ ├── plugin.md │ │ │ │ └── webview.md │ │ │ ├── android │ │ │ │ ├── config.md │ │ │ │ ├── index.md │ │ │ │ ├── plugin.md │ │ │ │ ├── tools.md │ │ │ │ ├── upgrade.md │ │ │ │ └── webview.md │ │ │ ├── blackberry │ │ │ │ └── upgrade.md │ │ │ ├── blackberry10 │ │ │ │ ├── config.md │ │ │ │ ├── index.md │ │ │ │ ├── plugin.md │ │ │ │ ├── tools.md │ │ │ │ └── upgrade.md │ │ │ ├── firefoxos │ │ │ │ └── index.md │ │ │ ├── index.md │ │ │ ├── ios │ │ │ │ ├── config.md │ │ │ │ ├── index.md │ │ │ │ ├── plugin.md │ │ │ │ ├── tools.md │ │ │ │ ├── upgrade.md │ │ │ │ └── webview.md │ │ │ ├── tizen │ │ │ │ └── index.md │ │ │ ├── ubuntu │ │ │ │ └── index.md │ │ │ ├── win8 │ │ │ │ ├── index.md │ │ │ │ ├── plugin.md │ │ │ │ └── upgrade.md │ │ │ └── wp8 │ │ │ │ ├── index.md │ │ │ │ ├── parallels.md │ │ │ │ ├── plugin.md │ │ │ │ ├── upgrade.md │ │ │ │ ├── vmware.md │ │ │ │ └── webview.md │ │ └── support │ │ │ └── index.md │ ├── index.md │ └── plugin_ref │ │ ├── plugman.md │ │ └── spec.md │ ├── 5.0.0 │ ├── config_ref │ │ ├── images.md │ │ └── index.md │ ├── cordova │ │ ├── events │ │ │ ├── events.backbutton.md │ │ │ ├── events.deviceready.md │ │ │ ├── events.endcallbutton.md │ │ │ ├── events.md │ │ │ ├── events.menubutton.md │ │ │ ├── events.pause.md │ │ │ ├── events.resume.md │ │ │ ├── events.searchbutton.md │ │ │ ├── events.startcallbutton.md │ │ │ ├── events.volumedownbutton.md │ │ │ └── events.volumeupbutton.md │ │ ├── plugins │ │ │ └── pluginapis.md │ │ └── storage │ │ │ └── storage.md │ ├── guide │ │ ├── appdev │ │ │ ├── privacy │ │ │ │ └── index.md │ │ │ ├── security │ │ │ │ └── index.md │ │ │ └── whitelist │ │ │ │ └── index.md │ │ ├── cli │ │ │ └── index.md │ │ ├── hybrid │ │ │ ├── plugins │ │ │ │ └── index.md │ │ │ └── webviews │ │ │ │ └── index.md │ │ ├── next │ │ │ └── index.md │ │ ├── overview │ │ │ └── index.md │ │ ├── platforms │ │ │ ├── amazonfireos │ │ │ │ ├── config.md │ │ │ │ ├── index.md │ │ │ │ ├── plugin.md │ │ │ │ └── webview.md │ │ │ ├── android │ │ │ │ ├── config.md │ │ │ │ ├── index.md │ │ │ │ ├── plugin.md │ │ │ │ ├── tools.md │ │ │ │ ├── upgrade.md │ │ │ │ └── webview.md │ │ │ ├── blackberry │ │ │ │ └── upgrade.md │ │ │ ├── blackberry10 │ │ │ │ ├── config.md │ │ │ │ ├── index.md │ │ │ │ ├── plugin.md │ │ │ │ ├── tools.md │ │ │ │ └── upgrade.md │ │ │ ├── firefoxos │ │ │ │ └── index.md │ │ │ ├── index.md │ │ │ ├── ios │ │ │ │ ├── config.md │ │ │ │ ├── index.md │ │ │ │ ├── plugin.md │ │ │ │ ├── tools.md │ │ │ │ ├── upgrade.md │ │ │ │ └── webview.md │ │ │ ├── tizen │ │ │ │ └── index.md │ │ │ ├── ubuntu │ │ │ │ └── index.md │ │ │ ├── win8 │ │ │ │ ├── index.md │ │ │ │ ├── plugin.md │ │ │ │ └── upgrade.md │ │ │ └── wp8 │ │ │ │ ├── index.md │ │ │ │ ├── parallels.md │ │ │ │ ├── plugin.md │ │ │ │ ├── upgrade.md │ │ │ │ ├── vmware.md │ │ │ │ └── webview.md │ │ └── support │ │ │ └── index.md │ ├── index.md │ └── plugin_ref │ │ ├── plugman.md │ │ └── spec.md │ ├── 5.1.1 │ ├── config_ref │ │ ├── images.md │ │ └── index.md │ ├── cordova │ │ ├── events │ │ │ ├── events.backbutton.md │ │ │ ├── events.deviceready.md │ │ │ ├── events.endcallbutton.md │ │ │ ├── events.md │ │ │ ├── events.menubutton.md │ │ │ ├── events.pause.md │ │ │ ├── events.resume.md │ │ │ ├── events.searchbutton.md │ │ │ ├── events.startcallbutton.md │ │ │ ├── events.volumedownbutton.md │ │ │ └── events.volumeupbutton.md │ │ ├── plugins │ │ │ └── pluginapis.md │ │ └── storage │ │ │ └── storage.md │ ├── guide │ │ ├── appdev │ │ │ ├── hooks │ │ │ │ └── index.md │ │ │ ├── privacy │ │ │ │ └── index.md │ │ │ ├── security │ │ │ │ └── index.md │ │ │ └── whitelist │ │ │ │ └── index.md │ │ ├── cli │ │ │ └── index.md │ │ ├── hybrid │ │ │ ├── plugins │ │ │ │ └── index.md │ │ │ └── webviews │ │ │ │ └── index.md │ │ ├── next │ │ │ └── index.md │ │ ├── overview │ │ │ └── index.md │ │ ├── platforms │ │ │ ├── amazonfireos │ │ │ │ ├── config.md │ │ │ │ ├── index.md │ │ │ │ ├── plugin.md │ │ │ │ └── webview.md │ │ │ ├── android │ │ │ │ ├── config.md │ │ │ │ ├── index.md │ │ │ │ ├── plugin.md │ │ │ │ ├── tools.md │ │ │ │ ├── upgrade.md │ │ │ │ └── webview.md │ │ │ ├── blackberry │ │ │ │ └── upgrade.md │ │ │ ├── blackberry10 │ │ │ │ ├── config.md │ │ │ │ ├── index.md │ │ │ │ ├── plugin.md │ │ │ │ ├── tools.md │ │ │ │ └── upgrade.md │ │ │ ├── firefoxos │ │ │ │ └── index.md │ │ │ ├── index.md │ │ │ ├── ios │ │ │ │ ├── config.md │ │ │ │ ├── index.md │ │ │ │ ├── plugin.md │ │ │ │ ├── tools.md │ │ │ │ ├── upgrade.md │ │ │ │ └── webview.md │ │ │ ├── tizen │ │ │ │ └── index.md │ │ │ ├── ubuntu │ │ │ │ └── index.md │ │ │ ├── win8 │ │ │ │ ├── index.md │ │ │ │ ├── packaging.md │ │ │ │ ├── plugin.md │ │ │ │ ├── upgrade.md │ │ │ │ └── win10-support.md │ │ │ └── wp8 │ │ │ │ ├── index.md │ │ │ │ ├── parallels.md │ │ │ │ ├── plugin.md │ │ │ │ ├── upgrade.md │ │ │ │ ├── vmware.md │ │ │ │ └── webview.md │ │ └── support │ │ │ └── index.md │ ├── index.md │ ├── platform_plugin_versioning_ref │ │ └── index.md │ └── plugin_ref │ │ ├── plugman.md │ │ └── spec.md │ ├── 5.4.0 │ ├── config_ref │ │ ├── images.md │ │ └── index.md │ ├── cordova │ │ ├── events │ │ │ ├── events.backbutton.md │ │ │ ├── events.deviceready.md │ │ │ ├── events.endcallbutton.md │ │ │ ├── events.md │ │ │ ├── events.menubutton.md │ │ │ ├── events.pause.md │ │ │ ├── events.resume.md │ │ │ ├── events.searchbutton.md │ │ │ ├── events.startcallbutton.md │ │ │ ├── events.volumedownbutton.md │ │ │ └── events.volumeupbutton.md │ │ ├── plugins │ │ │ └── pluginapis.md │ │ └── storage │ │ │ └── storage.md │ ├── guide │ │ ├── appdev │ │ │ ├── hooks │ │ │ │ └── index.md │ │ │ ├── privacy │ │ │ │ └── index.md │ │ │ ├── security │ │ │ │ └── index.md │ │ │ └── whitelist │ │ │ │ └── index.md │ │ ├── cli │ │ │ └── index.md │ │ ├── hybrid │ │ │ ├── plugins │ │ │ │ └── index.md │ │ │ └── webviews │ │ │ │ └── index.md │ │ ├── next │ │ │ └── index.md │ │ ├── overview │ │ │ └── index.md │ │ ├── platforms │ │ │ ├── amazonfireos │ │ │ │ ├── config.md │ │ │ │ ├── index.md │ │ │ │ ├── plugin.md │ │ │ │ └── webview.md │ │ │ ├── android │ │ │ │ ├── config.md │ │ │ │ ├── index.md │ │ │ │ ├── plugin.md │ │ │ │ ├── tools.md │ │ │ │ ├── upgrade.md │ │ │ │ └── webview.md │ │ │ ├── blackberry │ │ │ │ └── upgrade.md │ │ │ ├── blackberry10 │ │ │ │ ├── config.md │ │ │ │ ├── index.md │ │ │ │ ├── plugin.md │ │ │ │ ├── tools.md │ │ │ │ └── upgrade.md │ │ │ ├── firefoxos │ │ │ │ └── index.md │ │ │ ├── index.md │ │ │ ├── ios │ │ │ │ ├── config.md │ │ │ │ ├── index.md │ │ │ │ ├── plugin.md │ │ │ │ ├── tools.md │ │ │ │ ├── upgrade.md │ │ │ │ └── webview.md │ │ │ ├── tizen │ │ │ │ └── index.md │ │ │ ├── ubuntu │ │ │ │ └── index.md │ │ │ ├── win8 │ │ │ │ ├── index.md │ │ │ │ ├── packaging.md │ │ │ │ ├── plugin.md │ │ │ │ ├── upgrade.md │ │ │ │ └── win10-support.md │ │ │ └── wp8 │ │ │ │ ├── index.md │ │ │ │ ├── parallels.md │ │ │ │ ├── plugin.md │ │ │ │ ├── upgrade.md │ │ │ │ ├── vmware.md │ │ │ │ └── webview.md │ │ └── support │ │ │ └── index.md │ ├── index.md │ ├── platform_plugin_versioning_ref │ │ └── index.md │ └── plugin_ref │ │ ├── plugman.md │ │ └── spec.md │ ├── 6.x │ ├── config_ref │ │ ├── images.md │ │ └── index.md │ ├── cordova │ │ ├── events │ │ │ └── events.md │ │ └── storage │ │ │ └── storage.md │ ├── guide │ │ ├── appdev │ │ │ ├── hooks │ │ │ │ └── index.md │ │ │ ├── privacy │ │ │ │ └── index.md │ │ │ ├── security │ │ │ │ └── index.md │ │ │ └── whitelist │ │ │ │ └── index.md │ │ ├── cli │ │ │ ├── index.md │ │ │ └── template.md │ │ ├── hybrid │ │ │ ├── plugins │ │ │ │ └── index.md │ │ │ └── webviews │ │ │ │ └── index.md │ │ ├── next │ │ │ └── index.md │ │ ├── overview │ │ │ └── index.md │ │ ├── platforms │ │ │ ├── android │ │ │ │ ├── index.md │ │ │ │ ├── plugin.md │ │ │ │ ├── upgrade.md │ │ │ │ └── webview.md │ │ │ ├── blackberry │ │ │ │ └── upgrade.md │ │ │ ├── blackberry10 │ │ │ │ ├── config.md │ │ │ │ ├── home.md │ │ │ │ ├── index.md │ │ │ │ ├── plugin.md │ │ │ │ ├── tools.md │ │ │ │ └── upgrade.md │ │ │ ├── ios │ │ │ │ ├── index.md │ │ │ │ ├── plugin.md │ │ │ │ ├── upgrade.md │ │ │ │ └── webview.md │ │ │ ├── osx │ │ │ │ ├── config.md │ │ │ │ ├── index.md │ │ │ │ └── plugin.md │ │ │ ├── ubuntu │ │ │ │ └── index.md │ │ │ ├── win8 │ │ │ │ ├── index.md │ │ │ │ ├── plugin.md │ │ │ │ └── upgrade.md │ │ │ └── wp8 │ │ │ │ ├── home.md │ │ │ │ ├── index.md │ │ │ │ ├── parallels.md │ │ │ │ ├── plugin.md │ │ │ │ ├── upgrade.md │ │ │ │ ├── vmware.md │ │ │ │ └── webview.md │ │ └── support │ │ │ └── index.md │ ├── index.md │ ├── platform_plugin_versioning_ref │ │ └── index.md │ ├── plugin_ref │ │ ├── plugman.md │ │ └── spec.md │ └── reference │ │ ├── cordova-cli │ │ └── index.md │ │ ├── cordova-plugin-battery-status │ │ └── index.md │ │ ├── cordova-plugin-camera │ │ └── index.md │ │ ├── cordova-plugin-console │ │ └── index.md │ │ ├── cordova-plugin-contacts │ │ └── index.md │ │ ├── cordova-plugin-device-motion │ │ └── index.md │ │ ├── cordova-plugin-device-orientation │ │ └── index.md │ │ ├── cordova-plugin-device │ │ └── index.md │ │ ├── cordova-plugin-dialogs │ │ └── index.md │ │ ├── cordova-plugin-file-transfer │ │ └── index.md │ │ ├── cordova-plugin-file │ │ └── index.md │ │ ├── cordova-plugin-geolocation │ │ └── index.md │ │ ├── cordova-plugin-globalization │ │ └── index.md │ │ ├── cordova-plugin-inappbrowser │ │ └── index.md │ │ ├── cordova-plugin-legacy-whitelist │ │ └── index.md │ │ ├── cordova-plugin-media-capture │ │ └── index.md │ │ ├── cordova-plugin-media │ │ └── index.md │ │ ├── cordova-plugin-network-information │ │ └── index.md │ │ ├── cordova-plugin-splashscreen │ │ └── index.md │ │ ├── cordova-plugin-statusbar │ │ └── index.md │ │ ├── cordova-plugin-vibration │ │ └── index.md │ │ └── cordova-plugin-whitelist │ │ └── index.md │ ├── 7.x │ ├── config_ref │ │ ├── images.md │ │ └── index.md │ ├── cordova │ │ ├── events │ │ │ └── events.md │ │ └── storage │ │ │ └── storage.md │ ├── guide │ │ ├── appdev │ │ │ ├── hooks │ │ │ │ └── index.md │ │ │ ├── privacy │ │ │ │ └── index.md │ │ │ ├── security │ │ │ │ └── index.md │ │ │ └── whitelist │ │ │ │ └── index.md │ │ ├── cli │ │ │ ├── index.md │ │ │ └── template.md │ │ ├── hybrid │ │ │ ├── plugins │ │ │ │ └── index.md │ │ │ └── webviews │ │ │ │ └── index.md │ │ ├── next │ │ │ └── index.md │ │ ├── overview │ │ │ └── index.md │ │ ├── platforms │ │ │ ├── android │ │ │ │ ├── index.md │ │ │ │ ├── plugin.md │ │ │ │ ├── upgrade.md │ │ │ │ └── webview.md │ │ │ ├── blackberry │ │ │ │ └── upgrade.md │ │ │ ├── blackberry10 │ │ │ │ ├── config.md │ │ │ │ ├── home.md │ │ │ │ ├── index.md │ │ │ │ ├── plugin.md │ │ │ │ ├── tools.md │ │ │ │ └── upgrade.md │ │ │ ├── ios │ │ │ │ ├── index.md │ │ │ │ ├── plugin.md │ │ │ │ ├── upgrade.md │ │ │ │ └── webview.md │ │ │ ├── osx │ │ │ │ ├── config.md │ │ │ │ ├── index.md │ │ │ │ └── plugin.md │ │ │ ├── ubuntu │ │ │ │ └── index.md │ │ │ ├── win8 │ │ │ │ ├── index.md │ │ │ │ ├── plugin.md │ │ │ │ └── upgrade.md │ │ │ └── wp8 │ │ │ │ ├── home.md │ │ │ │ ├── index.md │ │ │ │ ├── parallels.md │ │ │ │ ├── plugin.md │ │ │ │ ├── upgrade.md │ │ │ │ ├── vmware.md │ │ │ │ └── webview.md │ │ └── support │ │ │ └── index.md │ ├── index.md │ ├── platform_plugin_versioning_ref │ │ └── index.md │ ├── plugin_ref │ │ ├── plugman.md │ │ └── spec.md │ └── reference │ │ ├── cordova-cli │ │ └── index.md │ │ ├── cordova-plugin-battery-status │ │ └── index.md │ │ ├── cordova-plugin-camera │ │ └── index.md │ │ ├── cordova-plugin-console │ │ └── index.md │ │ ├── cordova-plugin-contacts │ │ └── index.md │ │ ├── cordova-plugin-device-motion │ │ └── index.md │ │ ├── cordova-plugin-device-orientation │ │ └── index.md │ │ ├── cordova-plugin-device │ │ └── index.md │ │ ├── cordova-plugin-dialogs │ │ └── index.md │ │ ├── cordova-plugin-file-transfer │ │ └── index.md │ │ ├── cordova-plugin-file │ │ └── index.md │ │ ├── cordova-plugin-geolocation │ │ └── index.md │ │ ├── cordova-plugin-globalization │ │ └── index.md │ │ ├── cordova-plugin-inappbrowser │ │ └── index.md │ │ ├── cordova-plugin-legacy-whitelist │ │ └── index.md │ │ ├── cordova-plugin-media-capture │ │ └── index.md │ │ ├── cordova-plugin-media │ │ └── index.md │ │ ├── cordova-plugin-network-information │ │ └── index.md │ │ ├── cordova-plugin-splashscreen │ │ └── index.md │ │ ├── cordova-plugin-statusbar │ │ └── index.md │ │ ├── cordova-plugin-vibration │ │ └── index.md │ │ └── cordova-plugin-whitelist │ │ └── index.md │ ├── 8.x │ ├── config_ref │ │ ├── images.md │ │ └── index.md │ ├── cordova │ │ ├── events │ │ │ └── events.md │ │ └── storage │ │ │ └── storage.md │ ├── guide │ │ ├── appdev │ │ │ ├── hooks │ │ │ │ └── index.md │ │ │ ├── privacy │ │ │ │ └── index.md │ │ │ ├── security │ │ │ │ └── index.md │ │ │ └── whitelist │ │ │ │ └── index.md │ │ ├── cli │ │ │ ├── index.md │ │ │ └── template.md │ │ ├── hybrid │ │ │ ├── plugins │ │ │ │ └── index.md │ │ │ └── webviews │ │ │ │ └── index.md │ │ ├── next │ │ │ └── index.md │ │ ├── overview │ │ │ └── index.md │ │ ├── platforms │ │ │ ├── android │ │ │ │ ├── index.md │ │ │ │ ├── plugin.md │ │ │ │ ├── upgrade.md │ │ │ │ └── webview.md │ │ │ ├── ios │ │ │ │ ├── index.md │ │ │ │ ├── plugin.md │ │ │ │ ├── upgrade.md │ │ │ │ └── webview.md │ │ │ ├── osx │ │ │ │ ├── config.md │ │ │ │ ├── index.md │ │ │ │ └── plugin.md │ │ │ └── windows │ │ │ │ ├── index.md │ │ │ │ ├── plugin.md │ │ │ │ └── upgrade.md │ │ └── support │ │ │ └── index.md │ ├── index.md │ ├── platform_plugin_versioning_ref │ │ └── index.md │ ├── plugin_ref │ │ ├── plugman.md │ │ └── spec.md │ └── reference │ │ ├── cordova-cli │ │ └── index.md │ │ ├── cordova-plugin-battery-status │ │ └── index.md │ │ ├── cordova-plugin-camera │ │ └── index.md │ │ ├── cordova-plugin-console │ │ └── index.md │ │ ├── cordova-plugin-contacts │ │ └── index.md │ │ ├── cordova-plugin-device-motion │ │ └── index.md │ │ ├── cordova-plugin-device-orientation │ │ └── index.md │ │ ├── cordova-plugin-device │ │ └── index.md │ │ ├── cordova-plugin-dialogs │ │ └── index.md │ │ ├── cordova-plugin-file-transfer │ │ └── index.md │ │ ├── cordova-plugin-file │ │ └── index.md │ │ ├── cordova-plugin-geolocation │ │ └── index.md │ │ ├── cordova-plugin-globalization │ │ └── index.md │ │ ├── cordova-plugin-inappbrowser │ │ └── index.md │ │ ├── cordova-plugin-legacy-whitelist │ │ └── index.md │ │ ├── cordova-plugin-media-capture │ │ └── index.md │ │ ├── cordova-plugin-media │ │ └── index.md │ │ ├── cordova-plugin-network-information │ │ └── index.md │ │ ├── cordova-plugin-screen-orientation │ │ └── index.md │ │ ├── cordova-plugin-splashscreen │ │ └── index.md │ │ ├── cordova-plugin-statusbar │ │ └── index.md │ │ ├── cordova-plugin-vibration │ │ └── index.md │ │ └── cordova-plugin-whitelist │ │ └── index.md │ ├── 9.x │ ├── config_ref │ │ ├── images.md │ │ └── index.md │ ├── cordova │ │ ├── events │ │ │ └── events.md │ │ └── storage │ │ │ └── storage.md │ ├── guide │ │ ├── appdev │ │ │ ├── hooks │ │ │ │ └── index.md │ │ │ ├── privacy │ │ │ │ └── index.md │ │ │ ├── security │ │ │ │ └── index.md │ │ │ └── whitelist │ │ │ │ └── index.md │ │ ├── cli │ │ │ ├── index.md │ │ │ └── template.md │ │ ├── hybrid │ │ │ ├── plugins │ │ │ │ └── index.md │ │ │ └── webviews │ │ │ │ └── index.md │ │ ├── next │ │ │ └── index.md │ │ ├── overview │ │ │ └── index.md │ │ ├── platforms │ │ │ ├── android │ │ │ │ ├── index.md │ │ │ │ ├── plugin.md │ │ │ │ ├── upgrade.md │ │ │ │ └── webview.md │ │ │ ├── electron │ │ │ │ └── index.md │ │ │ ├── ios │ │ │ │ ├── index.md │ │ │ │ ├── plugin.md │ │ │ │ ├── upgrade.md │ │ │ │ └── webview.md │ │ │ ├── osx │ │ │ │ ├── config.md │ │ │ │ ├── index.md │ │ │ │ └── plugin.md │ │ │ └── windows │ │ │ │ ├── index.md │ │ │ │ ├── plugin.md │ │ │ │ └── upgrade.md │ │ └── support │ │ │ └── index.md │ ├── index.md │ ├── platform_pinning │ │ └── index.md │ ├── platform_plugin_versioning_ref │ │ └── index.md │ ├── plugin_ref │ │ ├── plugman.md │ │ └── spec.md │ └── reference │ │ ├── cordova-cli │ │ └── index.md │ │ ├── cordova-plugin-battery-status │ │ └── index.md │ │ ├── cordova-plugin-camera │ │ └── index.md │ │ ├── cordova-plugin-device │ │ └── index.md │ │ ├── cordova-plugin-dialogs │ │ └── index.md │ │ ├── cordova-plugin-file │ │ └── index.md │ │ ├── cordova-plugin-geolocation │ │ └── index.md │ │ ├── cordova-plugin-inappbrowser │ │ └── index.md │ │ ├── cordova-plugin-media-capture │ │ └── index.md │ │ ├── cordova-plugin-media │ │ └── index.md │ │ ├── cordova-plugin-network-information │ │ └── index.md │ │ ├── cordova-plugin-screen-orientation │ │ └── index.md │ │ ├── cordova-plugin-splashscreen │ │ └── index.md │ │ ├── cordova-plugin-statusbar │ │ └── index.md │ │ ├── cordova-plugin-vibration │ │ └── index.md │ │ └── cordova-plugin-whitelist │ │ └── index.md │ ├── deprecated.md │ └── dev │ ├── config_ref │ ├── images.md │ └── index.md │ ├── cordova │ ├── events │ │ └── events.md │ └── storage │ │ └── storage.md │ ├── core │ └── features │ │ └── splashscreen │ │ └── index.md │ ├── guide │ ├── appdev │ │ ├── allowlist │ │ │ └── index.md │ │ ├── hooks │ │ │ └── index.md │ │ ├── privacy │ │ │ └── index.md │ │ └── security │ │ │ └── index.md │ ├── cli │ │ ├── index.md │ │ ├── installation.md │ │ └── template.md │ ├── hybrid │ │ ├── plugins │ │ │ └── index.md │ │ └── webviews │ │ │ └── index.md │ ├── next │ │ └── index.md │ ├── overview │ │ ├── index.md │ │ └── project-structure.md │ ├── platforms │ │ ├── android │ │ │ ├── index.md │ │ │ ├── plugin.md │ │ │ ├── upgrade.md │ │ │ └── webview.md │ │ ├── electron │ │ │ └── index.md │ │ └── ios │ │ │ ├── index.md │ │ │ ├── plugin.md │ │ │ ├── upgrade.md │ │ │ └── webview.md │ └── support │ │ └── index.md │ ├── index.md │ ├── platform_pinning │ └── index.md │ ├── platform_plugin_versioning_ref │ └── index.md │ ├── plugin_ref │ ├── plugman.md │ └── spec.md │ └── third-party │ └── index.md ├── favicon.ico ├── feed.xml ├── http └── 404.html ├── index.html ├── infra ├── doap_Cordova.rdf └── doap_Cordova_PMC.rdf ├── plugins └── index.html ├── privacy └── index.md ├── robots.txt ├── sitemap.xml ├── static ├── css-src │ ├── _artwork.scss │ ├── _blog.scss │ ├── _contact.scss │ ├── _contribute.scss │ ├── _docs.scss │ ├── _home.scss │ ├── _plugins.scss │ ├── _team.scss │ ├── fonts.scss │ ├── lib │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ └── syntax.css │ └── main.scss ├── downloads │ ├── BlueZedEx.mp3 │ ├── icons.zip │ ├── logos.zip │ ├── psd │ │ └── iOS │ │ │ ├── iOS_Audio-iPad.psd.zip │ │ │ ├── iOS_Audio-iPadRetina.psd.zip │ │ │ ├── iOS_Audio-iPhone.psd.zip │ │ │ ├── iOS_Audio-iPhone5Retina.psd.zip │ │ │ └── iOS_Audio-iPhoneRetina.psd.zip │ └── screens.zip ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ ├── glyphicons-halflings-regular.woff2 │ └── raleway │ │ ├── Raleway-Black.ttf │ │ ├── Raleway-BlackItalic.ttf │ │ ├── Raleway-Bold.ttf │ │ ├── Raleway-BoldItalic.ttf │ │ ├── Raleway-ExtraBold.ttf │ │ ├── Raleway-ExtraBoldItalic.ttf │ │ ├── Raleway-ExtraLight.ttf │ │ ├── Raleway-ExtraLightItalic.ttf │ │ ├── Raleway-Italic.ttf │ │ ├── Raleway-Light.ttf │ │ ├── Raleway-LightItalic.ttf │ │ ├── Raleway-Medium.ttf │ │ ├── Raleway-MediumItalic.ttf │ │ ├── Raleway-Regular.ttf │ │ ├── Raleway-SemiBold.ttf │ │ ├── Raleway-SemiBoldItalic.ttf │ │ ├── Raleway-Thin.ttf │ │ └── Raleway-ThinItalic.ttf ├── img │ ├── 2019-01-29-node-eol-timeline.svg │ ├── 3rdparty_logo_sprite.svg │ ├── 4-platforms.png │ ├── arrow.png │ ├── artwork │ │ ├── cordova_logo_dark_gray_large.png │ │ ├── cordova_logo_dark_gray_small.png │ │ ├── cordova_logo_normal_dark_large.png │ │ ├── cordova_logo_normal_dark_small.png │ │ ├── cordova_logo_normal_large.png │ │ ├── cordova_logo_normal_small.png │ │ ├── cordova_logo_white_large.png │ │ └── cordova_logo_white_small.png │ ├── blog │ │ ├── 2018 │ │ │ ├── arch-webview-engine.png │ │ │ ├── bridge-webview-engine.png │ │ │ ├── cordova-simulate-1.png │ │ │ ├── cordova-simulate-2.png │ │ │ ├── cordova-simulate-3.png │ │ │ └── cordova-simulate-4.png │ │ ├── 2023 │ │ │ ├── cordova-android-12-platform-sdk-33.png │ │ │ └── cordova-android-12-sdk-build-tools-3302.png │ │ ├── 2024 │ │ │ ├── cordova-android-13-platform-sdk-34.png │ │ │ ├── cordova-android-13-sdk-build-tools-3400.png │ │ │ └── survey │ │ │ │ ├── image1.png │ │ │ │ ├── image2.png │ │ │ │ ├── image3.png │ │ │ │ ├── image4.png │ │ │ │ ├── image5.png │ │ │ │ ├── image6.png │ │ │ │ └── image7.png │ │ └── 2025 │ │ │ ├── cordova-android-14-platform-sdk-35.png │ │ │ └── cordova-android-14-sdk-build-tools-3500.png │ ├── bug_icon.svg │ ├── copy-clipboard-icon.svg │ ├── cordova-logo-newbrand-textonly.svg │ ├── cordova-logo-newbrand.svg │ ├── cordova-node-timeline.svg │ ├── cordova_128.png │ ├── cordova_16.png │ ├── cordova_24.png │ ├── cordova_256.png │ ├── cordova_32.png │ ├── cordova_48.png │ ├── cordova_512.png │ ├── cordova_64.png │ ├── cordova_bot.jpg │ ├── cordova_bot.png │ ├── follow_twitter_rectangle.png │ ├── github-mark.png │ ├── grid.png │ ├── guide │ │ ├── cli │ │ │ ├── 2023-android-app-running-on-emulator.png │ │ │ ├── 2023-android-connecting-to-emulator.png │ │ │ ├── 2023-android-launching-to-emulator.png │ │ │ ├── android_emulate_init.png │ │ │ ├── android_emulate_install.png │ │ │ ├── npm-cordova-template-082023.png │ │ │ └── template.png │ │ ├── cordovaapparchitecture-20230712.svg │ │ ├── cordovaapparchitecture.png │ │ └── platforms │ │ │ ├── android │ │ │ ├── AndroidFlow.png │ │ │ ├── android-studio-electric-eel-20220101-2 │ │ │ │ ├── hello-cordova-main-activity.png │ │ │ │ ├── sdk-manager │ │ │ │ │ ├── android-emulator.png │ │ │ │ │ ├── command-line-tools-latest.png │ │ │ │ │ ├── sdk-build-tools.png │ │ │ │ │ ├── sdk-platform-tools.png │ │ │ │ │ └── sdk-platform.png │ │ │ │ └── welcome-to-android-studio.png │ │ │ ├── asdk_avds.png │ │ │ ├── asdk_device.png │ │ │ ├── asdk_emulator.png │ │ │ ├── asdk_import_done.png │ │ │ ├── asdk_import_project.png │ │ │ ├── asdk_import_select_location.png │ │ │ ├── asdk_man_intel_image_haxm.png │ │ │ ├── asdk_newAVD.png │ │ │ ├── asdk_new_and_dev_intel.png │ │ │ ├── asdk_window.png │ │ │ ├── buildPath.jpg │ │ │ ├── eclipse_new_project.png │ │ │ ├── emulator2x.png │ │ │ ├── intel_pid_util_620px.png │ │ │ ├── javaSrc.jpg │ │ │ ├── manifest.jpg │ │ │ ├── manifest.png │ │ │ ├── new_android_project.jpeg │ │ │ ├── step_1.png │ │ │ ├── step_2.png │ │ │ ├── step_3.png │ │ │ ├── step_4.png │ │ │ └── step_5.png │ │ │ ├── bada │ │ │ ├── bada_1_run.png │ │ │ ├── bada_2_run.png │ │ │ ├── bada_project.png │ │ │ ├── bada_set_target.png │ │ │ ├── import_bada_project.png │ │ │ └── import_bada_project_2.png │ │ │ ├── blackberry10 │ │ │ ├── bb_devel.png │ │ │ ├── bb_home.png │ │ │ └── bb_pin.png │ │ │ ├── ios │ │ │ ├── HelloWorld-running-xr.png │ │ │ ├── HelloWorldStandard.png │ │ │ ├── HelloWorldiPhone4.png │ │ │ ├── XCode4-templates.png │ │ │ ├── active_scheme_device.png │ │ │ ├── active_scheme_simulator.png │ │ │ ├── bin_create_project.png │ │ │ ├── bin_dir_listing.png │ │ │ ├── bin_folder.png │ │ │ ├── create-folder-reference.png │ │ │ ├── create.png │ │ │ ├── helloworld_project.png │ │ │ ├── index-not-found.png │ │ │ ├── make.png │ │ │ ├── project.jpg │ │ │ ├── select_xcode_scheme.png │ │ │ ├── www-folder.png │ │ │ ├── xcode10-review-settings.png │ │ │ ├── xcode10-run-project.png │ │ │ ├── xcode26-helloworld-general-settings.png │ │ │ ├── xcode26-helloworld-run-project.png │ │ │ ├── xcode26-helloworld-running-simulator.png │ │ │ ├── xcode4-name_your_app.png │ │ │ └── xcode_build_location.png │ │ │ ├── osx │ │ │ ├── helloworld_project.png │ │ │ ├── helloworld_run.png │ │ │ ├── xcode10-build-location.png │ │ │ └── xcode10-review-project.png │ │ │ ├── win8 │ │ │ ├── createprivatekeywindow.png │ │ │ ├── packaging.png │ │ │ ├── win8_installSDK.png │ │ │ ├── win8_installTools.png │ │ │ ├── win8_sdk.png │ │ │ ├── win8_sdk_deploy.png │ │ │ ├── win8_sdk_openSLN.png │ │ │ ├── win8_sdk_run.png │ │ │ ├── win8_sdk_runApp.png │ │ │ ├── win8_sdk_runHome.png │ │ │ ├── win8_sdk_sim.png │ │ │ ├── wsalert.png │ │ │ ├── wschangemanifest.png │ │ │ └── wsnewproject.png │ │ │ ├── windows │ │ │ ├── vs17_workload.png │ │ │ ├── vs2015_packaging.png │ │ │ ├── win8_installTools.png │ │ │ ├── win8_sdk.png │ │ │ ├── win8_sdk_deploy.png │ │ │ ├── win8_sdk_openSLN.png │ │ │ ├── win8_sdk_run.png │ │ │ ├── win8_sdk_runApp.png │ │ │ ├── win8_sdk_runHome.png │ │ │ └── win8_sdk_sim.png │ │ │ ├── wp7 │ │ │ ├── wp7emulator.png │ │ │ ├── wp7projectstructure.png │ │ │ ├── wp7vs.png │ │ │ ├── wpd.png │ │ │ ├── wpfirstrun.png │ │ │ ├── wpnewproj.png │ │ │ └── wprun.png │ │ │ └── wp8 │ │ │ ├── BuidDevice.png │ │ │ ├── FullTemplate.png │ │ │ ├── StandAloneTemplate.png │ │ │ ├── modpath_advanced.png │ │ │ ├── modpath_append.png │ │ │ ├── modpath_control_panel.png │ │ │ ├── modpath_copy.png │ │ │ ├── modpath_edit.png │ │ │ ├── modpath_environment.png │ │ │ ├── modpath_system.png │ │ │ ├── parallel_cpu_opts.png │ │ │ ├── parallel_optimize_opts.png │ │ │ ├── projectStructure.png │ │ │ ├── vmware_advanced_opts.png │ │ │ ├── vmware_memory_opts.png │ │ │ ├── wp7_emulator.png │ │ │ ├── wp8_downloadSDK.png │ │ │ ├── wp8_emulator.png │ │ │ ├── wp8_emulator_loc.png │ │ │ ├── wp8_emulator_orient.png │ │ │ └── wp8_vs.png │ ├── line.png │ ├── logo_full.png │ ├── logo_full_2.svg │ ├── logo_text.svg │ ├── npm-mark.png │ ├── platform-logos-all-sprite.svg │ ├── platform-logos.svg │ ├── pluggy.png │ ├── post-next.png │ ├── post-prev.png │ ├── search_icon.svg │ ├── search_icon_hover.svg │ ├── shadow.png │ ├── showcase-apps │ │ ├── Buildr.png │ │ ├── CleverBaby.png │ │ ├── FanReact.png │ │ ├── Graded.png │ │ ├── Gudog.png │ │ ├── JustWatch.png │ │ ├── Keepe.png │ │ ├── OneVerse.png │ │ ├── Pacifica.png │ │ ├── SeriesSeven.png │ │ ├── Smoothie3D.png │ │ ├── SparkChess.png │ │ └── Sworkit.png │ ├── slack_rgb_300_141.png │ ├── splash.png │ ├── sprite.png │ ├── subscribe.png │ ├── team │ │ └── profiles │ │ │ ├── NiklasMerz.png │ │ │ ├── breautek.png │ │ │ ├── dpogue.png │ │ │ ├── erisu.png │ │ │ ├── knight9999.png │ │ │ └── purplecabbage.png │ ├── tools │ │ ├── appbuilder.png │ │ ├── appstudio.png │ │ ├── cocoon.png │ │ ├── cordova.png │ │ ├── evothings.png │ │ ├── framework7.png │ │ ├── instabug.png │ │ ├── ionic.png │ │ ├── mobiscroll.png │ │ ├── monaca.png │ │ ├── onsen.png │ │ ├── phonegap.svg │ │ ├── quasar-logo.svg │ │ ├── visual_studio_white.png │ │ ├── voltbuilder.png │ │ └── voltsigner.png │ ├── twitter_profile.png │ ├── valid-rss-rogers.png │ ├── value-prop-sprite.svg │ └── wisplight.jpg └── js │ ├── 404.js │ ├── docs.js │ ├── index.js │ └── lib │ ├── bootstrap.js │ ├── bootstrap.min.js │ ├── jquery-2.1.1.min.js │ ├── npm.js │ └── toc.min.js └── wiki-images ├── contributor-git.graphml └── contributor-git.png /.asf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/.asf.yaml -------------------------------------------------------------------------------- /.eslintrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/.eslintrc.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/BUG_REPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/.github/ISSUE_TEMPLATE/BUG_REPORT.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/SUPPORT_QUESTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/.github/ISSUE_TEMPLATE/SUPPORT_QUESTION.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/.npmrc -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 13.x-2025.11 2 | -------------------------------------------------------------------------------- /conf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/conf/README.md -------------------------------------------------------------------------------- /conf/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/conf/_config.yml -------------------------------------------------------------------------------- /conf/_dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/conf/_dev.yml -------------------------------------------------------------------------------- /conf/_nodocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/conf/_nodocs.yml -------------------------------------------------------------------------------- /conf/_prod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/conf/_prod.yml -------------------------------------------------------------------------------- /doc/blogpost.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/doc/blogpost.md -------------------------------------------------------------------------------- /doc/building-and-deploying-the-website.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/doc/building-and-deploying-the-website.md -------------------------------------------------------------------------------- /doc/building-the-website.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/doc/building-the-website.md -------------------------------------------------------------------------------- /doc/deploying-the-website.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/doc/deploying-the-website.md -------------------------------------------------------------------------------- /doc/developing-the-website.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/doc/developing-the-website.md -------------------------------------------------------------------------------- /doc/docs-STYLEGUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/doc/docs-STYLEGUIDE.md -------------------------------------------------------------------------------- /doc/installing-a-development-environment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/doc/installing-a-development-environment.md -------------------------------------------------------------------------------- /doc/redirects.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/doc/redirects.md -------------------------------------------------------------------------------- /doc/testing-the-website.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/doc/testing-the-website.md -------------------------------------------------------------------------------- /doc/tool-or-showcase-app.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/doc/tool-or-showcase-app.md -------------------------------------------------------------------------------- /doc/translate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/doc/translate.md -------------------------------------------------------------------------------- /doc/troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/doc/troubleshooting.md -------------------------------------------------------------------------------- /doc/working-on-docs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/doc/working-on-docs.md -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/gulpfile.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/package.json -------------------------------------------------------------------------------- /tools/HeaderTransform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/tools/HeaderTransform.js -------------------------------------------------------------------------------- /tools/bin/augment_toc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/tools/bin/augment_toc.js -------------------------------------------------------------------------------- /tools/bin/fetch_docs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/tools/bin/fetch_docs.js -------------------------------------------------------------------------------- /tools/bin/gen_defaults.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/tools/bin/gen_defaults.js -------------------------------------------------------------------------------- /tools/bin/gen_pages_dict.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/tools/bin/gen_pages_dict.js -------------------------------------------------------------------------------- /tools/bin/gen_versions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/tools/bin/gen_versions.js -------------------------------------------------------------------------------- /tools/bin/linkify-bugs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/tools/bin/linkify-bugs.sh -------------------------------------------------------------------------------- /tools/bin/nextversion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/tools/bin/nextversion.js -------------------------------------------------------------------------------- /tools/bin/toc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/tools/bin/toc.js -------------------------------------------------------------------------------- /tools/bin/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/tools/bin/util.js -------------------------------------------------------------------------------- /www/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/.htaccess -------------------------------------------------------------------------------- /www/_data/constants.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_data/constants.yml -------------------------------------------------------------------------------- /www/_data/contribute-repo-links.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_data/contribute-repo-links.yml -------------------------------------------------------------------------------- /www/_data/fetched-files.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_data/fetched-files.yml -------------------------------------------------------------------------------- /www/_data/mailing-lists.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_data/mailing-lists.yml -------------------------------------------------------------------------------- /www/_data/plugins.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_data/plugins.yml -------------------------------------------------------------------------------- /www/_data/redirects.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_data/redirects.yml -------------------------------------------------------------------------------- /www/_data/toc/en_1-5-0-src.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_data/toc/en_1-5-0-src.yml -------------------------------------------------------------------------------- /www/_data/toc/en_1-6-0-src.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_data/toc/en_1-6-0-src.yml -------------------------------------------------------------------------------- /www/_data/toc/en_1-6-1-src.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_data/toc/en_1-6-1-src.yml -------------------------------------------------------------------------------- /www/_data/toc/en_1-7-0-src.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_data/toc/en_1-7-0-src.yml -------------------------------------------------------------------------------- /www/_data/toc/en_1-8-0-src.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_data/toc/en_1-8-0-src.yml -------------------------------------------------------------------------------- /www/_data/toc/en_1-8-1-src.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_data/toc/en_1-8-1-src.yml -------------------------------------------------------------------------------- /www/_data/toc/en_1-9-0-src.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_data/toc/en_1-9-0-src.yml -------------------------------------------------------------------------------- /www/_data/toc/en_10-x-src.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_data/toc/en_10-x-src.yml -------------------------------------------------------------------------------- /www/_data/toc/en_11-x-src.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_data/toc/en_11-x-src.yml -------------------------------------------------------------------------------- /www/_data/toc/en_12-x-2025-01-src.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_data/toc/en_12-x-2025-01-src.yml -------------------------------------------------------------------------------- /www/_data/toc/en_12-x-src.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_data/toc/en_12-x-src.yml -------------------------------------------------------------------------------- /www/_data/toc/en_13-x-2025-11-src.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_data/toc/en_13-x-2025-11-src.yml -------------------------------------------------------------------------------- /www/_data/toc/en_2-0-0-src.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_data/toc/en_2-0-0-src.yml -------------------------------------------------------------------------------- /www/_data/toc/en_2-1-0-src.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_data/toc/en_2-1-0-src.yml -------------------------------------------------------------------------------- /www/_data/toc/en_2-2-0-src.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_data/toc/en_2-2-0-src.yml -------------------------------------------------------------------------------- /www/_data/toc/en_2-3-0-src.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_data/toc/en_2-3-0-src.yml -------------------------------------------------------------------------------- /www/_data/toc/en_2-4-0-src.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_data/toc/en_2-4-0-src.yml -------------------------------------------------------------------------------- /www/_data/toc/en_2-5-0-src.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_data/toc/en_2-5-0-src.yml -------------------------------------------------------------------------------- /www/_data/toc/en_2-6-0-src.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_data/toc/en_2-6-0-src.yml -------------------------------------------------------------------------------- /www/_data/toc/en_2-7-0-src.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_data/toc/en_2-7-0-src.yml -------------------------------------------------------------------------------- /www/_data/toc/en_2-8-0-src.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_data/toc/en_2-8-0-src.yml -------------------------------------------------------------------------------- /www/_data/toc/en_2-9-0-src.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_data/toc/en_2-9-0-src.yml -------------------------------------------------------------------------------- /www/_data/toc/en_3-0-0-src.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_data/toc/en_3-0-0-src.yml -------------------------------------------------------------------------------- /www/_data/toc/en_3-1-0-src.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_data/toc/en_3-1-0-src.yml -------------------------------------------------------------------------------- /www/_data/toc/en_3-2-0-src.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_data/toc/en_3-2-0-src.yml -------------------------------------------------------------------------------- /www/_data/toc/en_3-3-0-src.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_data/toc/en_3-3-0-src.yml -------------------------------------------------------------------------------- /www/_data/toc/en_3-4-0-src.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_data/toc/en_3-4-0-src.yml -------------------------------------------------------------------------------- /www/_data/toc/en_3-5-0-src.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_data/toc/en_3-5-0-src.yml -------------------------------------------------------------------------------- /www/_data/toc/en_3-6-0-src.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_data/toc/en_3-6-0-src.yml -------------------------------------------------------------------------------- /www/_data/toc/en_4-0-0-src.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_data/toc/en_4-0-0-src.yml -------------------------------------------------------------------------------- /www/_data/toc/en_5-0-0-src.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_data/toc/en_5-0-0-src.yml -------------------------------------------------------------------------------- /www/_data/toc/en_5-1-1-src.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_data/toc/en_5-1-1-src.yml -------------------------------------------------------------------------------- /www/_data/toc/en_5-4-0-src.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_data/toc/en_5-4-0-src.yml -------------------------------------------------------------------------------- /www/_data/toc/en_6-x-src.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_data/toc/en_6-x-src.yml -------------------------------------------------------------------------------- /www/_data/toc/en_7-x-src.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_data/toc/en_7-x-src.yml -------------------------------------------------------------------------------- /www/_data/toc/en_8-x-src.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_data/toc/en_8-x-src.yml -------------------------------------------------------------------------------- /www/_data/toc/en_9-x-src.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_data/toc/en_9-x-src.yml -------------------------------------------------------------------------------- /www/_data/toc/en_dev-src.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_data/toc/en_dev-src.yml -------------------------------------------------------------------------------- /www/_data/tools.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_data/tools.yml -------------------------------------------------------------------------------- /www/_includes/analytics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_includes/analytics.html -------------------------------------------------------------------------------- /www/_includes/footer_contents.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_includes/footer_contents.html -------------------------------------------------------------------------------- /www/_includes/footer_docs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_includes/footer_docs.html -------------------------------------------------------------------------------- /www/_includes/footer_site.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_includes/footer_site.html -------------------------------------------------------------------------------- /www/_includes/generated_docs_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_includes/generated_docs_index.html -------------------------------------------------------------------------------- /www/_includes/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_includes/head.html -------------------------------------------------------------------------------- /www/_includes/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_includes/header.html -------------------------------------------------------------------------------- /www/_includes/sitemap_entry.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_includes/sitemap_entry.html -------------------------------------------------------------------------------- /www/_includes/toc_recursive_dropdown.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_includes/toc_recursive_dropdown.html -------------------------------------------------------------------------------- /www/_includes/toc_recursive_main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_includes/toc_recursive_main.html -------------------------------------------------------------------------------- /www/_layouts/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_layouts/base.html -------------------------------------------------------------------------------- /www/_layouts/blog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_layouts/blog.html -------------------------------------------------------------------------------- /www/_layouts/contribute.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_layouts/contribute.html -------------------------------------------------------------------------------- /www/_layouts/cordova.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_layouts/cordova.html -------------------------------------------------------------------------------- /www/_layouts/docs-en.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_layouts/docs-en.html -------------------------------------------------------------------------------- /www/_layouts/docs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_layouts/docs.html -------------------------------------------------------------------------------- /www/_layouts/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_layouts/page.html -------------------------------------------------------------------------------- /www/_layouts/plugins.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: page 3 | plugins_tab: true 4 | --- 5 | 6 | {{ content }} 7 | -------------------------------------------------------------------------------- /www/_layouts/post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_layouts/post.html -------------------------------------------------------------------------------- /www/_layouts/team.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_layouts/team.html -------------------------------------------------------------------------------- /www/_members/dpogue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_members/dpogue.md -------------------------------------------------------------------------------- /www/_members/erisu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_members/erisu.md -------------------------------------------------------------------------------- /www/_members/jessemacfadyen.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_members/jessemacfadyen.md -------------------------------------------------------------------------------- /www/_members/knaito.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_members/knaito.md -------------------------------------------------------------------------------- /www/_members/niklasmerz.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_members/niklasmerz.md -------------------------------------------------------------------------------- /www/_members/normanbreau.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_members/normanbreau.md -------------------------------------------------------------------------------- /www/_plugins/cdv-platform-tag.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_plugins/cdv-platform-tag.rb -------------------------------------------------------------------------------- /www/_plugins/cdv-vartype-tag.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_plugins/cdv-vartype-tag.rb -------------------------------------------------------------------------------- /www/_posts/2013-07-08-cordova-has-a-blog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2013-07-08-cordova-has-a-blog.md -------------------------------------------------------------------------------- /www/_posts/2013-07-23-cordova-3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2013-07-23-cordova-3.md -------------------------------------------------------------------------------- /www/_posts/2013-08-12-crowdintranslation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2013-08-12-crowdintranslation.md -------------------------------------------------------------------------------- /www/_posts/2013-09-06-last-week.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2013-09-06-last-week.md -------------------------------------------------------------------------------- /www/_posts/2013-09-13-last-week.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2013-09-13-last-week.md -------------------------------------------------------------------------------- /www/_posts/2013-10-01-plugins-release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2013-10-01-plugins-release.md -------------------------------------------------------------------------------- /www/_posts/2013-10-02-cordova-31.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2013-10-02-cordova-31.md -------------------------------------------------------------------------------- /www/_posts/2013-10-10-plugins-release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2013-10-10-plugins-release.md -------------------------------------------------------------------------------- /www/_posts/2013-10-21-cordova-registry.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2013-10-21-cordova-registry.md -------------------------------------------------------------------------------- /www/_posts/2013-10-28-plugins-release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2013-10-28-plugins-release.md -------------------------------------------------------------------------------- /www/_posts/2013-11-06-cordova-291.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2013-11-06-cordova-291.md -------------------------------------------------------------------------------- /www/_posts/2013-11-13-cordova-320rc1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2013-11-13-cordova-320rc1.md -------------------------------------------------------------------------------- /www/_posts/2013-11-15-kitkat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2013-11-15-kitkat.md -------------------------------------------------------------------------------- /www/_posts/2013-11-22-cordova-320.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2013-11-22-cordova-320.md -------------------------------------------------------------------------------- /www/_posts/2013-12-04-plugins-release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2013-12-04-plugins-release.md -------------------------------------------------------------------------------- /www/_posts/2013-12-06-cordova-330rc1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2013-12-06-cordova-330rc1.md -------------------------------------------------------------------------------- /www/_posts/2013-12-16-cordova-330.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2013-12-16-cordova-330.md -------------------------------------------------------------------------------- /www/_posts/2014-01-02-plugins-release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2014-01-02-plugins-release.md -------------------------------------------------------------------------------- /www/_posts/2014-01-31-tools-release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2014-01-31-tools-release.md -------------------------------------------------------------------------------- /www/_posts/2014-02-10-plugins-release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2014-02-10-plugins-release.md -------------------------------------------------------------------------------- /www/_posts/2014-02-20-cordova-340.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2014-02-20-cordova-340.md -------------------------------------------------------------------------------- /www/_posts/2014-03-03-plugins-release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2014-03-03-plugins-release.md -------------------------------------------------------------------------------- /www/_posts/2014-03-05-tools-release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2014-03-05-tools-release.md -------------------------------------------------------------------------------- /www/_posts/2014-04-09-tools-ios-release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2014-04-09-tools-ios-release.md -------------------------------------------------------------------------------- /www/_posts/2014-04-23-plugins.release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2014-04-23-plugins.release.md -------------------------------------------------------------------------------- /www/_posts/2014-05-23-cordova-350.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2014-05-23-cordova-350.md -------------------------------------------------------------------------------- /www/_posts/2014-06-12-plugins-release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2014-06-12-plugins-release.md -------------------------------------------------------------------------------- /www/_posts/2014-07-08-plugins-release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2014-07-08-plugins-release.md -------------------------------------------------------------------------------- /www/_posts/2014-07-10-tools-release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2014-07-10-tools-release.md -------------------------------------------------------------------------------- /www/_posts/2014-08-04-android-351.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2014-08-04-android-351.md -------------------------------------------------------------------------------- /www/_posts/2014-08-06-android-351-update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2014-08-06-android-351-update.md -------------------------------------------------------------------------------- /www/_posts/2014-08-11-plugins-release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2014-08-11-plugins-release.md -------------------------------------------------------------------------------- /www/_posts/2014-08-13-tools-update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2014-08-13-tools-update.md -------------------------------------------------------------------------------- /www/_posts/2014-09-08-cordova-361.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2014-09-08-cordova-361.md -------------------------------------------------------------------------------- /www/_posts/2014-09-22-plugins-release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2014-09-22-plugins-release.md -------------------------------------------------------------------------------- /www/_posts/2014-10-16-cordova-4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2014-10-16-cordova-4.md -------------------------------------------------------------------------------- /www/_posts/2014-10-17-plugins-release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2014-10-17-plugins-release.md -------------------------------------------------------------------------------- /www/_posts/2014-11-06-cordova-ios-3.7.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2014-11-06-cordova-ios-3.7.0.md -------------------------------------------------------------------------------- /www/_posts/2014-11-11-windows-cert.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2014-11-11-windows-cert.md -------------------------------------------------------------------------------- /www/_posts/2014-11-13-tools-release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2014-11-13-tools-release.md -------------------------------------------------------------------------------- /www/_posts/2014-11-18-cordova-perf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2014-11-18-cordova-perf.md -------------------------------------------------------------------------------- /www/_posts/2014-11-25-ios-64bit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2014-11-25-ios-64bit.md -------------------------------------------------------------------------------- /www/_posts/2014-12-09-plugins-release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2014-12-09-plugins-release.md -------------------------------------------------------------------------------- /www/_posts/2015-01-09-tools-release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2015-01-09-tools-release.md -------------------------------------------------------------------------------- /www/_posts/2015-02-10-plugins-release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2015-02-10-plugins-release.md -------------------------------------------------------------------------------- /www/_posts/2015-02-25-cordova-ios-3.8.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2015-02-25-cordova-ios-3.8.0.md -------------------------------------------------------------------------------- /www/_posts/2015-03-02-tools-release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2015-03-02-tools-release.md -------------------------------------------------------------------------------- /www/_posts/2015-04-21-tools-release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2015-04-21-tools-release.md -------------------------------------------------------------------------------- /www/_posts/2015-05-26-android-402.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2015-05-26-android-402.md -------------------------------------------------------------------------------- /www/_posts/2015-06-03-windows-release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2015-06-03-windows-release.md -------------------------------------------------------------------------------- /www/_posts/2015-06-04-tools-release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2015-06-04-tools-release.md -------------------------------------------------------------------------------- /www/_posts/2015-06-10-tools-release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2015-06-10-tools-release.md -------------------------------------------------------------------------------- /www/_posts/2015-06-22-plugins-release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2015-06-22-plugins-release.md -------------------------------------------------------------------------------- /www/_posts/2015-08-04-cordova-ios-3.9.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2015-08-04-cordova-ios-3.9.0.md -------------------------------------------------------------------------------- /www/_posts/2015-08-13-tools-release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2015-08-13-tools-release.md -------------------------------------------------------------------------------- /www/_posts/2015-09-08-cpr-readonly.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2015-09-08-cpr-readonly.md -------------------------------------------------------------------------------- /www/_posts/2015-09-09-tools-release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2015-09-09-tools-release.md -------------------------------------------------------------------------------- /www/_posts/2015-09-22-tools-release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2015-09-22-tools-release.md -------------------------------------------------------------------------------- /www/_posts/2015-11-02-cordova-ios-3.9.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2015-11-02-cordova-ios-3.9.2.md -------------------------------------------------------------------------------- /www/_posts/2015-11-06-tools-release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2015-11-06-tools-release.md -------------------------------------------------------------------------------- /www/_posts/2015-11-20-security.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2015-11-20-security.md -------------------------------------------------------------------------------- /www/_posts/2015-11-24-plugins-release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2015-11-24-plugins-release.md -------------------------------------------------------------------------------- /www/_posts/2015-11-24-tools-release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2015-11-24-tools-release.md -------------------------------------------------------------------------------- /www/_posts/2015-12-08-cordova-ios-4.0.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2015-12-08-cordova-ios-4.0.0.md -------------------------------------------------------------------------------- /www/_posts/2015-12-14-plugins-release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2015-12-14-plugins-release.md -------------------------------------------------------------------------------- /www/_posts/2015-12-18-cordova-ios-4.0.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2015-12-18-cordova-ios-4.0.1.md -------------------------------------------------------------------------------- /www/_posts/2016-01-19-plugins-release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2016-01-19-plugins-release.md -------------------------------------------------------------------------------- /www/_posts/2016-01-28-tools-release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2016-01-28-tools-release.md -------------------------------------------------------------------------------- /www/_posts/2016-02-04-plugins-release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2016-02-04-plugins-release.md -------------------------------------------------------------------------------- /www/_posts/2016-02-09-plugins-release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2016-02-09-plugins-release.md -------------------------------------------------------------------------------- /www/_posts/2016-02-16-osx-4.0.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2016-02-16-osx-4.0.0.md -------------------------------------------------------------------------------- /www/_posts/2016-03-02-ios-4.1.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2016-03-02-ios-4.1.0.md -------------------------------------------------------------------------------- /www/_posts/2016-03-03-docs-improvement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2016-03-03-docs-improvement.md -------------------------------------------------------------------------------- /www/_posts/2016-03-12-plugin-release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2016-03-12-plugin-release.md -------------------------------------------------------------------------------- /www/_posts/2016-03-22-new-plugin-fetching.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2016-03-22-new-plugin-fetching.md -------------------------------------------------------------------------------- /www/_posts/2016-03-23-tools-release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2016-03-23-tools-release.md -------------------------------------------------------------------------------- /www/_posts/2016-04-04-ios-4.1.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2016-04-04-ios-4.1.1.md -------------------------------------------------------------------------------- /www/_posts/2016-04-04-tools-release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2016-04-04-tools-release.md -------------------------------------------------------------------------------- /www/_posts/2016-04-20-plugins-release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2016-04-20-plugins-release.md -------------------------------------------------------------------------------- /www/_posts/2016-04-27-security.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2016-04-27-security.md -------------------------------------------------------------------------------- /www/_posts/2016-05-24-tools-release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2016-05-24-tools-release.md -------------------------------------------------------------------------------- /www/_posts/2016-06-23-ios-4.2.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2016-06-23-ios-4.2.0.md -------------------------------------------------------------------------------- /www/_posts/2016-07-02-android-5.2.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2016-07-02-android-5.2.0.md -------------------------------------------------------------------------------- /www/_posts/2016-07-13-tools-release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2016-07-13-tools-release.md -------------------------------------------------------------------------------- /www/_posts/2016-08-12-tools-release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2016-08-12-tools-release.md -------------------------------------------------------------------------------- /www/_posts/2016-08-22-android-ios-release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2016-08-22-android-ios-release.md -------------------------------------------------------------------------------- /www/_posts/2016-09-14-plugins-release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2016-09-14-plugins-release.md -------------------------------------------------------------------------------- /www/_posts/2016-10-04-small-releases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2016-10-04-small-releases.md -------------------------------------------------------------------------------- /www/_posts/2016-10-24-android-release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2016-10-24-android-release.md -------------------------------------------------------------------------------- /www/_posts/2016-10-24-ios-release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2016-10-24-ios-release.md -------------------------------------------------------------------------------- /www/_posts/2016-10-25-tools-release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2016-10-25-tools-release.md -------------------------------------------------------------------------------- /www/_posts/2016-11-07-android-release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2016-11-07-android-release.md -------------------------------------------------------------------------------- /www/_posts/2016-12-02-ios-release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2016-12-02-ios-release.md -------------------------------------------------------------------------------- /www/_posts/2016-12-07-plugins-release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2016-12-07-plugins-release.md -------------------------------------------------------------------------------- /www/_posts/2016-12-12-plugins-release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2016-12-12-plugins-release.md -------------------------------------------------------------------------------- /www/_posts/2017-01-05-android-release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2017-01-05-android-release.md -------------------------------------------------------------------------------- /www/_posts/2017-01-23-tools-release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2017-01-23-tools-release.md -------------------------------------------------------------------------------- /www/_posts/2017-01-27-android-612.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2017-01-27-android-612.md -------------------------------------------------------------------------------- /www/_posts/2017-02-01-committership.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2017-02-01-committership.md -------------------------------------------------------------------------------- /www/_posts/2017-03-07-plugins-release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2017-03-07-plugins-release.md -------------------------------------------------------------------------------- /www/_posts/2017-04-05-android-release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2017-04-05-android-release.md -------------------------------------------------------------------------------- /www/_posts/2017-04-26-ios-release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2017-04-26-ios-release.md -------------------------------------------------------------------------------- /www/_posts/2017-04-28-android-release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2017-04-28-android-release.md -------------------------------------------------------------------------------- /www/_posts/2017-05-01-plugins-release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2017-05-01-plugins-release.md -------------------------------------------------------------------------------- /www/_posts/2017-05-04-android-release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2017-05-04-android-release.md -------------------------------------------------------------------------------- /www/_posts/2017-05-04-cordova-7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2017-05-04-cordova-7.md -------------------------------------------------------------------------------- /www/_posts/2017-05-12-tools-release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2017-05-12-tools-release.md -------------------------------------------------------------------------------- /www/_posts/2017-09-08-ios-release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2017-09-08-ios-release.md -------------------------------------------------------------------------------- /www/_posts/2017-09-22-plugins-release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2017-09-22-plugins-release.md -------------------------------------------------------------------------------- /www/_posts/2017-09-25-ios-release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2017-09-25-ios-release.md -------------------------------------------------------------------------------- /www/_posts/2017-09-27-android-release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2017-09-27-android-release.md -------------------------------------------------------------------------------- /www/_posts/2017-10-10-tools-release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2017-10-10-tools-release.md -------------------------------------------------------------------------------- /www/_posts/2017-10-16-ios-release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2017-10-16-ios-release.md -------------------------------------------------------------------------------- /www/_posts/2017-10-19-browser-release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2017-10-19-browser-release.md -------------------------------------------------------------------------------- /www/_posts/2017-10-30-fetch-release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2017-10-30-fetch-release.md -------------------------------------------------------------------------------- /www/_posts/2017-10-31-ios-release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2017-10-31-ios-release.md -------------------------------------------------------------------------------- /www/_posts/2017-11-09-android-release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2017-11-09-android-release.md -------------------------------------------------------------------------------- /www/_posts/2017-11-10-plugins-release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2017-11-10-plugins-release.md -------------------------------------------------------------------------------- /www/_posts/2017-11-21-ios-release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2017-11-21-ios-release.md -------------------------------------------------------------------------------- /www/_posts/2017-12-18-tools-release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2017-12-18-tools-release.md -------------------------------------------------------------------------------- /www/_posts/2017-12-20-plugins-release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2017-12-20-plugins-release.md -------------------------------------------------------------------------------- /www/_posts/2017-12-30-plugins-release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2017-12-30-plugins-release.md -------------------------------------------------------------------------------- /www/_posts/2018-01-29-plugins-release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2018-01-29-plugins-release.md -------------------------------------------------------------------------------- /www/_posts/2018-02-02-cordova-simulate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2018-02-02-cordova-simulate.md -------------------------------------------------------------------------------- /www/_posts/2018-04-16-plugins-release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2018-04-16-plugins-release.md -------------------------------------------------------------------------------- /www/_posts/2018-06-04-common-release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2018-06-04-common-release.md -------------------------------------------------------------------------------- /www/_posts/2018-07-26-cordova-ios-4.5.5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2018-07-26-cordova-ios-4.5.5.md -------------------------------------------------------------------------------- /www/_posts/2018-08-14-cordova-osx-4.0.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2018-08-14-cordova-osx-4.0.2.md -------------------------------------------------------------------------------- /www/_posts/2018-09-17-cordova-fetch-1.3.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2018-09-17-cordova-fetch-1.3.1.md -------------------------------------------------------------------------------- /www/_posts/2018-09-17-cordova-lib-8.1.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2018-09-17-cordova-lib-8.1.0.md -------------------------------------------------------------------------------- /www/_posts/2018-09-26-cordova-cli-8.1.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2018-09-26-cordova-cli-8.1.0.md -------------------------------------------------------------------------------- /www/_posts/2018-09-27-cordova-cli-8.1.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2018-09-27-cordova-cli-8.1.1.md -------------------------------------------------------------------------------- /www/_posts/2018-10-05-cordova-lib-8.1.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2018-10-05-cordova-lib-8.1.1.md -------------------------------------------------------------------------------- /www/_posts/2018-10-07-cordova-cli-8.1.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2018-10-07-cordova-cli-8.1.2.md -------------------------------------------------------------------------------- /www/_posts/2018-12-21-xcode-1.1.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2018-12-21-xcode-1.1.0.md -------------------------------------------------------------------------------- /www/_posts/2018-12-25-tools-release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2018-12-25-tools-release.md -------------------------------------------------------------------------------- /www/_posts/2019-01-17-xcode-release-2.0.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2019-01-17-xcode-release-2.0.0.md -------------------------------------------------------------------------------- /www/_posts/2019-04-22-cordova-ios-5.0.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2019-04-22-cordova-ios-5.0.1.md -------------------------------------------------------------------------------- /www/_posts/2019-12-24-xcode-release-2.1.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2019-12-24-xcode-release-2.1.0.md -------------------------------------------------------------------------------- /www/_posts/2020-03-18-wkwebviewonly.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2020-03-18-wkwebviewonly.md -------------------------------------------------------------------------------- /www/_posts/2020-06-01-tools-release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2020-06-01-tools-release.md -------------------------------------------------------------------------------- /www/_posts/2020-06-13-plugins-release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2020-06-13-plugins-release.md -------------------------------------------------------------------------------- /www/_posts/2020-06-15-osx-release-6.0.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2020-06-15-osx-release-6.0.0.md -------------------------------------------------------------------------------- /www/_posts/2020-06-23-cordova-ios-6.1.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2020-06-23-cordova-ios-6.1.0.md -------------------------------------------------------------------------------- /www/_posts/2020-07-18-uiwebview-warning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2020-07-18-uiwebview-warning.md -------------------------------------------------------------------------------- /www/_posts/2020-08-14-goodbye-phonegap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2020-08-14-goodbye-phonegap.md -------------------------------------------------------------------------------- /www/_posts/2020-08-31-cordova-ios-6.1.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2020-08-31-cordova-ios-6.1.1.md -------------------------------------------------------------------------------- /www/_posts/2020-09-29-cve-2020-6506.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2020-09-29-cve-2020-6506.md -------------------------------------------------------------------------------- /www/_posts/2020-11-30-cve-2020-11990.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2020-11-30-cve-2020-11990.md -------------------------------------------------------------------------------- /www/_posts/2021-02-02-cordova-fetch-3.0.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2021-02-02-cordova-fetch-3.0.1.md -------------------------------------------------------------------------------- /www/_posts/2021-08-25-translations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2021-08-25-translations.md -------------------------------------------------------------------------------- /www/_posts/2021-10-31-template-release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2021-10-31-template-release.md -------------------------------------------------------------------------------- /www/_posts/2022-03-09-osx-release-7.0.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2022-03-09-osx-release-7.0.0.md -------------------------------------------------------------------------------- /www/_posts/2022-03-22-osx-deprecation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2022-03-22-osx-deprecation.md -------------------------------------------------------------------------------- /www/_posts/2022-09-09-media-plugin-6.1.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2022-09-09-media-plugin-6.1.0.md -------------------------------------------------------------------------------- /www/_posts/2023-05-22-cordova-cli-12.0.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2023-05-22-cordova-cli-12.0.0.md -------------------------------------------------------------------------------- /www/_posts/2023-07-10-cordova-ios-7.0.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2023-07-10-cordova-ios-7.0.0.md -------------------------------------------------------------------------------- /www/_posts/2023-07-11-file-plugin-8.0.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2023-07-11-file-plugin-8.0.0.md -------------------------------------------------------------------------------- /www/_posts/2023-09-06-cordova-ios-7.0.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2023-09-06-cordova-ios-7.0.1.md -------------------------------------------------------------------------------- /www/_posts/2023-11-24-survey.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2023-11-24-survey.md -------------------------------------------------------------------------------- /www/_posts/2024-01-12-survey-results.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2024-01-12-survey-results.md -------------------------------------------------------------------------------- /www/_posts/2024-04-03-cordova-ios-7.1.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2024-04-03-cordova-ios-7.1.0.md -------------------------------------------------------------------------------- /www/_posts/2024-07-24-cordova-ios-7.1.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2024-07-24-cordova-ios-7.1.1.md -------------------------------------------------------------------------------- /www/_posts/2025-01-08-meetup-1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2025-01-08-meetup-1.md -------------------------------------------------------------------------------- /www/_posts/2025-01-31-meetup-1-recording.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2025-01-31-meetup-1-recording.md -------------------------------------------------------------------------------- /www/_posts/2025-08-29-cordova-fetch-5.0.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2025-08-29-cordova-fetch-5.0.0.md -------------------------------------------------------------------------------- /www/_posts/2025-11-05-cordova-lib-13.0.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2025-11-05-cordova-lib-13.0.0.md -------------------------------------------------------------------------------- /www/_posts/2025-11-23-cordova-ios-8.0.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2025-11-23-cordova-ios-8.0.0.md -------------------------------------------------------------------------------- /www/_posts/2025-11-25-cordova-cli-13.0.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/_posts/2025-11-25-cordova-cli-13.0.0.md -------------------------------------------------------------------------------- /www/artwork.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/artwork.html -------------------------------------------------------------------------------- /www/attributions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/attributions.html -------------------------------------------------------------------------------- /www/blog/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/blog/index.html -------------------------------------------------------------------------------- /www/contact/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/contact/index.html -------------------------------------------------------------------------------- /www/contribute/contribute_guidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/contribute/contribute_guidelines.md -------------------------------------------------------------------------------- /www/contribute/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/contribute/index.html -------------------------------------------------------------------------------- /www/contribute/issues.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/contribute/issues.md -------------------------------------------------------------------------------- /www/contribute/nightly_builds.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/contribute/nightly_builds.md -------------------------------------------------------------------------------- /www/contribute/team.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/contribute/team.html -------------------------------------------------------------------------------- /www/deprecation_policy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/deprecation_policy.md -------------------------------------------------------------------------------- /www/docs/en/1.5.0/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/1.5.0/index.md -------------------------------------------------------------------------------- /www/docs/en/1.5.0/phonegap/camera/camera.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/1.5.0/phonegap/camera/camera.md -------------------------------------------------------------------------------- /www/docs/en/1.5.0/phonegap/device/device.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/1.5.0/phonegap/device/device.md -------------------------------------------------------------------------------- /www/docs/en/1.5.0/phonegap/events/events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/1.5.0/phonegap/events/events.md -------------------------------------------------------------------------------- /www/docs/en/1.5.0/phonegap/file/file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/1.5.0/phonegap/file/file.md -------------------------------------------------------------------------------- /www/docs/en/1.5.0/phonegap/media/media.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/1.5.0/phonegap/media/media.md -------------------------------------------------------------------------------- /www/docs/en/1.6.0/cordova/camera/camera.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/1.6.0/cordova/camera/camera.md -------------------------------------------------------------------------------- /www/docs/en/1.6.0/cordova/compass/compass.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/1.6.0/cordova/compass/compass.md -------------------------------------------------------------------------------- /www/docs/en/1.6.0/cordova/device/device.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/1.6.0/cordova/device/device.md -------------------------------------------------------------------------------- /www/docs/en/1.6.0/cordova/events/events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/1.6.0/cordova/events/events.md -------------------------------------------------------------------------------- /www/docs/en/1.6.0/cordova/file/file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/1.6.0/cordova/file/file.md -------------------------------------------------------------------------------- /www/docs/en/1.6.0/cordova/media/media.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/1.6.0/cordova/media/media.md -------------------------------------------------------------------------------- /www/docs/en/1.6.0/cordova/storage/storage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/1.6.0/cordova/storage/storage.md -------------------------------------------------------------------------------- /www/docs/en/1.6.0/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/1.6.0/index.md -------------------------------------------------------------------------------- /www/docs/en/1.6.1/cordova/camera/camera.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/1.6.1/cordova/camera/camera.md -------------------------------------------------------------------------------- /www/docs/en/1.6.1/cordova/compass/compass.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/1.6.1/cordova/compass/compass.md -------------------------------------------------------------------------------- /www/docs/en/1.6.1/cordova/device/device.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/1.6.1/cordova/device/device.md -------------------------------------------------------------------------------- /www/docs/en/1.6.1/cordova/events/events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/1.6.1/cordova/events/events.md -------------------------------------------------------------------------------- /www/docs/en/1.6.1/cordova/file/file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/1.6.1/cordova/file/file.md -------------------------------------------------------------------------------- /www/docs/en/1.6.1/cordova/media/media.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/1.6.1/cordova/media/media.md -------------------------------------------------------------------------------- /www/docs/en/1.6.1/cordova/storage/storage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/1.6.1/cordova/storage/storage.md -------------------------------------------------------------------------------- /www/docs/en/1.6.1/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/1.6.1/index.md -------------------------------------------------------------------------------- /www/docs/en/1.7.0/cordova/camera/camera.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/1.7.0/cordova/camera/camera.md -------------------------------------------------------------------------------- /www/docs/en/1.7.0/cordova/compass/compass.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/1.7.0/cordova/compass/compass.md -------------------------------------------------------------------------------- /www/docs/en/1.7.0/cordova/device/device.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/1.7.0/cordova/device/device.md -------------------------------------------------------------------------------- /www/docs/en/1.7.0/cordova/events/events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/1.7.0/cordova/events/events.md -------------------------------------------------------------------------------- /www/docs/en/1.7.0/cordova/file/file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/1.7.0/cordova/file/file.md -------------------------------------------------------------------------------- /www/docs/en/1.7.0/cordova/media/media.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/1.7.0/cordova/media/media.md -------------------------------------------------------------------------------- /www/docs/en/1.7.0/cordova/storage/storage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/1.7.0/cordova/storage/storage.md -------------------------------------------------------------------------------- /www/docs/en/1.7.0/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/1.7.0/index.md -------------------------------------------------------------------------------- /www/docs/en/1.8.0/cordova/camera/camera.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/1.8.0/cordova/camera/camera.md -------------------------------------------------------------------------------- /www/docs/en/1.8.0/cordova/compass/compass.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/1.8.0/cordova/compass/compass.md -------------------------------------------------------------------------------- /www/docs/en/1.8.0/cordova/device/device.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/1.8.0/cordova/device/device.md -------------------------------------------------------------------------------- /www/docs/en/1.8.0/cordova/events/events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/1.8.0/cordova/events/events.md -------------------------------------------------------------------------------- /www/docs/en/1.8.0/cordova/file/file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/1.8.0/cordova/file/file.md -------------------------------------------------------------------------------- /www/docs/en/1.8.0/cordova/media/media.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/1.8.0/cordova/media/media.md -------------------------------------------------------------------------------- /www/docs/en/1.8.0/cordova/storage/storage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/1.8.0/cordova/storage/storage.md -------------------------------------------------------------------------------- /www/docs/en/1.8.0/guide/upgrading/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/1.8.0/guide/upgrading/index.md -------------------------------------------------------------------------------- /www/docs/en/1.8.0/guide/whitelist/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/1.8.0/guide/whitelist/index.md -------------------------------------------------------------------------------- /www/docs/en/1.8.0/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/1.8.0/index.md -------------------------------------------------------------------------------- /www/docs/en/1.8.1/cordova/camera/camera.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/1.8.1/cordova/camera/camera.md -------------------------------------------------------------------------------- /www/docs/en/1.8.1/cordova/compass/compass.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/1.8.1/cordova/compass/compass.md -------------------------------------------------------------------------------- /www/docs/en/1.8.1/cordova/device/device.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/1.8.1/cordova/device/device.md -------------------------------------------------------------------------------- /www/docs/en/1.8.1/cordova/events/events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/1.8.1/cordova/events/events.md -------------------------------------------------------------------------------- /www/docs/en/1.8.1/cordova/file/file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/1.8.1/cordova/file/file.md -------------------------------------------------------------------------------- /www/docs/en/1.8.1/cordova/media/media.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/1.8.1/cordova/media/media.md -------------------------------------------------------------------------------- /www/docs/en/1.8.1/cordova/storage/storage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/1.8.1/cordova/storage/storage.md -------------------------------------------------------------------------------- /www/docs/en/1.8.1/guide/upgrading/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/1.8.1/guide/upgrading/index.md -------------------------------------------------------------------------------- /www/docs/en/1.8.1/guide/whitelist/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/1.8.1/guide/whitelist/index.md -------------------------------------------------------------------------------- /www/docs/en/1.8.1/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/1.8.1/index.md -------------------------------------------------------------------------------- /www/docs/en/1.9.0/cordova/camera/camera.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/1.9.0/cordova/camera/camera.md -------------------------------------------------------------------------------- /www/docs/en/1.9.0/cordova/compass/compass.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/1.9.0/cordova/compass/compass.md -------------------------------------------------------------------------------- /www/docs/en/1.9.0/cordova/device/device.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/1.9.0/cordova/device/device.md -------------------------------------------------------------------------------- /www/docs/en/1.9.0/cordova/events/events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/1.9.0/cordova/events/events.md -------------------------------------------------------------------------------- /www/docs/en/1.9.0/cordova/file/file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/1.9.0/cordova/file/file.md -------------------------------------------------------------------------------- /www/docs/en/1.9.0/cordova/media/media.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/1.9.0/cordova/media/media.md -------------------------------------------------------------------------------- /www/docs/en/1.9.0/cordova/storage/storage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/1.9.0/cordova/storage/storage.md -------------------------------------------------------------------------------- /www/docs/en/1.9.0/guide/upgrading/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/1.9.0/guide/upgrading/index.md -------------------------------------------------------------------------------- /www/docs/en/1.9.0/guide/whitelist/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/1.9.0/guide/whitelist/index.md -------------------------------------------------------------------------------- /www/docs/en/1.9.0/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/1.9.0/index.md -------------------------------------------------------------------------------- /www/docs/en/10.x/config_ref/images.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/10.x/config_ref/images.md -------------------------------------------------------------------------------- /www/docs/en/10.x/config_ref/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/10.x/config_ref/index.md -------------------------------------------------------------------------------- /www/docs/en/10.x/cordova/events/events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/10.x/cordova/events/events.md -------------------------------------------------------------------------------- /www/docs/en/10.x/cordova/storage/storage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/10.x/cordova/storage/storage.md -------------------------------------------------------------------------------- /www/docs/en/10.x/guide/appdev/hooks/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/10.x/guide/appdev/hooks/index.md -------------------------------------------------------------------------------- /www/docs/en/10.x/guide/cli/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/10.x/guide/cli/index.md -------------------------------------------------------------------------------- /www/docs/en/10.x/guide/cli/template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/10.x/guide/cli/template.md -------------------------------------------------------------------------------- /www/docs/en/10.x/guide/next/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/10.x/guide/next/index.md -------------------------------------------------------------------------------- /www/docs/en/10.x/guide/overview/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/10.x/guide/overview/index.md -------------------------------------------------------------------------------- /www/docs/en/10.x/guide/support/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/10.x/guide/support/index.md -------------------------------------------------------------------------------- /www/docs/en/10.x/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/10.x/index.md -------------------------------------------------------------------------------- /www/docs/en/10.x/platform_pinning/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/10.x/platform_pinning/index.md -------------------------------------------------------------------------------- /www/docs/en/10.x/plugin_ref/plugman.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/10.x/plugin_ref/plugman.md -------------------------------------------------------------------------------- /www/docs/en/10.x/plugin_ref/spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/10.x/plugin_ref/spec.md -------------------------------------------------------------------------------- /www/docs/en/11.x/config_ref/images.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/11.x/config_ref/images.md -------------------------------------------------------------------------------- /www/docs/en/11.x/config_ref/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/11.x/config_ref/index.md -------------------------------------------------------------------------------- /www/docs/en/11.x/cordova/events/events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/11.x/cordova/events/events.md -------------------------------------------------------------------------------- /www/docs/en/11.x/cordova/storage/storage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/11.x/cordova/storage/storage.md -------------------------------------------------------------------------------- /www/docs/en/11.x/guide/appdev/hooks/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/11.x/guide/appdev/hooks/index.md -------------------------------------------------------------------------------- /www/docs/en/11.x/guide/cli/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/11.x/guide/cli/index.md -------------------------------------------------------------------------------- /www/docs/en/11.x/guide/cli/template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/11.x/guide/cli/template.md -------------------------------------------------------------------------------- /www/docs/en/11.x/guide/next/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/11.x/guide/next/index.md -------------------------------------------------------------------------------- /www/docs/en/11.x/guide/overview/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/11.x/guide/overview/index.md -------------------------------------------------------------------------------- /www/docs/en/11.x/guide/support/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/11.x/guide/support/index.md -------------------------------------------------------------------------------- /www/docs/en/11.x/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/11.x/index.md -------------------------------------------------------------------------------- /www/docs/en/11.x/platform_pinning/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/11.x/platform_pinning/index.md -------------------------------------------------------------------------------- /www/docs/en/11.x/plugin_ref/plugman.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/11.x/plugin_ref/plugman.md -------------------------------------------------------------------------------- /www/docs/en/11.x/plugin_ref/spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/11.x/plugin_ref/spec.md -------------------------------------------------------------------------------- /www/docs/en/11.x/third-party/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/11.x/third-party/index.md -------------------------------------------------------------------------------- /www/docs/en/12.x-2025.01/config_ref/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/12.x-2025.01/config_ref/index.md -------------------------------------------------------------------------------- /www/docs/en/12.x-2025.01/guide/cli/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/12.x-2025.01/guide/cli/index.md -------------------------------------------------------------------------------- /www/docs/en/12.x-2025.01/guide/next/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/12.x-2025.01/guide/next/index.md -------------------------------------------------------------------------------- /www/docs/en/12.x-2025.01/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/12.x-2025.01/index.md -------------------------------------------------------------------------------- /www/docs/en/12.x-2025.01/plugin_ref/spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/12.x-2025.01/plugin_ref/spec.md -------------------------------------------------------------------------------- /www/docs/en/12.x/config_ref/images.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/12.x/config_ref/images.md -------------------------------------------------------------------------------- /www/docs/en/12.x/config_ref/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/12.x/config_ref/index.md -------------------------------------------------------------------------------- /www/docs/en/12.x/cordova/events/events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/12.x/cordova/events/events.md -------------------------------------------------------------------------------- /www/docs/en/12.x/cordova/storage/storage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/12.x/cordova/storage/storage.md -------------------------------------------------------------------------------- /www/docs/en/12.x/guide/appdev/hooks/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/12.x/guide/appdev/hooks/index.md -------------------------------------------------------------------------------- /www/docs/en/12.x/guide/cli/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/12.x/guide/cli/index.md -------------------------------------------------------------------------------- /www/docs/en/12.x/guide/cli/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/12.x/guide/cli/installation.md -------------------------------------------------------------------------------- /www/docs/en/12.x/guide/cli/template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/12.x/guide/cli/template.md -------------------------------------------------------------------------------- /www/docs/en/12.x/guide/next/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/12.x/guide/next/index.md -------------------------------------------------------------------------------- /www/docs/en/12.x/guide/overview/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/12.x/guide/overview/index.md -------------------------------------------------------------------------------- /www/docs/en/12.x/guide/support/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/12.x/guide/support/index.md -------------------------------------------------------------------------------- /www/docs/en/12.x/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/12.x/index.md -------------------------------------------------------------------------------- /www/docs/en/12.x/platform_pinning/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/12.x/platform_pinning/index.md -------------------------------------------------------------------------------- /www/docs/en/12.x/plugin_ref/plugman.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/12.x/plugin_ref/plugman.md -------------------------------------------------------------------------------- /www/docs/en/12.x/plugin_ref/spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/12.x/plugin_ref/spec.md -------------------------------------------------------------------------------- /www/docs/en/12.x/third-party/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/12.x/third-party/index.md -------------------------------------------------------------------------------- /www/docs/en/13.x-2025.11/config_ref/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/13.x-2025.11/config_ref/index.md -------------------------------------------------------------------------------- /www/docs/en/13.x-2025.11/guide/cli/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/13.x-2025.11/guide/cli/index.md -------------------------------------------------------------------------------- /www/docs/en/13.x-2025.11/guide/next/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/13.x-2025.11/guide/next/index.md -------------------------------------------------------------------------------- /www/docs/en/13.x-2025.11/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/13.x-2025.11/index.md -------------------------------------------------------------------------------- /www/docs/en/13.x-2025.11/plugin_ref/spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/13.x-2025.11/plugin_ref/spec.md -------------------------------------------------------------------------------- /www/docs/en/2.0.0/cordova/camera/camera.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/2.0.0/cordova/camera/camera.md -------------------------------------------------------------------------------- /www/docs/en/2.0.0/cordova/compass/compass.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/2.0.0/cordova/compass/compass.md -------------------------------------------------------------------------------- /www/docs/en/2.0.0/cordova/device/device.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/2.0.0/cordova/device/device.md -------------------------------------------------------------------------------- /www/docs/en/2.0.0/cordova/events/events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/2.0.0/cordova/events/events.md -------------------------------------------------------------------------------- /www/docs/en/2.0.0/cordova/file/file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/2.0.0/cordova/file/file.md -------------------------------------------------------------------------------- /www/docs/en/2.0.0/cordova/media/media.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/2.0.0/cordova/media/media.md -------------------------------------------------------------------------------- /www/docs/en/2.0.0/cordova/storage/storage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/2.0.0/cordova/storage/storage.md -------------------------------------------------------------------------------- /www/docs/en/2.0.0/guide/upgrading/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/2.0.0/guide/upgrading/index.md -------------------------------------------------------------------------------- /www/docs/en/2.0.0/guide/whitelist/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/2.0.0/guide/whitelist/index.md -------------------------------------------------------------------------------- /www/docs/en/2.0.0/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/2.0.0/index.md -------------------------------------------------------------------------------- /www/docs/en/2.1.0/cordova/camera/camera.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/2.1.0/cordova/camera/camera.md -------------------------------------------------------------------------------- /www/docs/en/2.1.0/cordova/compass/compass.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/2.1.0/cordova/compass/compass.md -------------------------------------------------------------------------------- /www/docs/en/2.1.0/cordova/device/device.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/2.1.0/cordova/device/device.md -------------------------------------------------------------------------------- /www/docs/en/2.1.0/cordova/events/events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/2.1.0/cordova/events/events.md -------------------------------------------------------------------------------- /www/docs/en/2.1.0/cordova/file/file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/2.1.0/cordova/file/file.md -------------------------------------------------------------------------------- /www/docs/en/2.1.0/cordova/media/media.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/2.1.0/cordova/media/media.md -------------------------------------------------------------------------------- /www/docs/en/2.1.0/cordova/storage/storage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/2.1.0/cordova/storage/storage.md -------------------------------------------------------------------------------- /www/docs/en/2.1.0/guide/upgrading/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/2.1.0/guide/upgrading/index.md -------------------------------------------------------------------------------- /www/docs/en/2.1.0/guide/whitelist/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/2.1.0/guide/whitelist/index.md -------------------------------------------------------------------------------- /www/docs/en/2.1.0/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/2.1.0/index.md -------------------------------------------------------------------------------- /www/docs/en/2.2.0/cordova/camera/camera.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/2.2.0/cordova/camera/camera.md -------------------------------------------------------------------------------- /www/docs/en/2.2.0/cordova/compass/compass.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/2.2.0/cordova/compass/compass.md -------------------------------------------------------------------------------- /www/docs/en/2.2.0/cordova/device/device.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/2.2.0/cordova/device/device.md -------------------------------------------------------------------------------- /www/docs/en/2.2.0/cordova/events/events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/2.2.0/cordova/events/events.md -------------------------------------------------------------------------------- /www/docs/en/2.2.0/cordova/file/file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/2.2.0/cordova/file/file.md -------------------------------------------------------------------------------- /www/docs/en/2.2.0/cordova/media/media.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/2.2.0/cordova/media/media.md -------------------------------------------------------------------------------- /www/docs/en/2.2.0/cordova/storage/storage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/2.2.0/cordova/storage/storage.md -------------------------------------------------------------------------------- /www/docs/en/2.2.0/guide/upgrading/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/2.2.0/guide/upgrading/index.md -------------------------------------------------------------------------------- /www/docs/en/2.2.0/guide/whitelist/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/2.2.0/guide/whitelist/index.md -------------------------------------------------------------------------------- /www/docs/en/2.2.0/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/2.2.0/index.md -------------------------------------------------------------------------------- /www/docs/en/2.3.0/cordova/camera/camera.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/2.3.0/cordova/camera/camera.md -------------------------------------------------------------------------------- /www/docs/en/2.3.0/cordova/compass/compass.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/2.3.0/cordova/compass/compass.md -------------------------------------------------------------------------------- /www/docs/en/2.3.0/cordova/device/device.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/2.3.0/cordova/device/device.md -------------------------------------------------------------------------------- /www/docs/en/2.3.0/cordova/events/events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/2.3.0/cordova/events/events.md -------------------------------------------------------------------------------- /www/docs/en/2.3.0/cordova/file/file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/2.3.0/cordova/file/file.md -------------------------------------------------------------------------------- /www/docs/en/2.3.0/cordova/media/media.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/2.3.0/cordova/media/media.md -------------------------------------------------------------------------------- /www/docs/en/2.3.0/cordova/storage/storage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/2.3.0/cordova/storage/storage.md -------------------------------------------------------------------------------- /www/docs/en/2.3.0/guide/upgrading/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/2.3.0/guide/upgrading/index.md -------------------------------------------------------------------------------- /www/docs/en/2.3.0/guide/whitelist/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/2.3.0/guide/whitelist/index.md -------------------------------------------------------------------------------- /www/docs/en/2.3.0/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/2.3.0/index.md -------------------------------------------------------------------------------- /www/docs/en/2.4.0/cordova/camera/camera.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/2.4.0/cordova/camera/camera.md -------------------------------------------------------------------------------- /www/docs/en/2.4.0/cordova/compass/compass.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/2.4.0/cordova/compass/compass.md -------------------------------------------------------------------------------- /www/docs/en/2.4.0/cordova/device/device.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/2.4.0/cordova/device/device.md -------------------------------------------------------------------------------- /www/docs/en/2.4.0/cordova/events/events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/2.4.0/cordova/events/events.md -------------------------------------------------------------------------------- /www/docs/en/2.4.0/cordova/file/file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/2.4.0/cordova/file/file.md -------------------------------------------------------------------------------- /www/docs/en/2.4.0/cordova/media/media.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/2.4.0/cordova/media/media.md -------------------------------------------------------------------------------- /www/docs/en/2.4.0/cordova/storage/storage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/2.4.0/cordova/storage/storage.md -------------------------------------------------------------------------------- /www/docs/en/2.4.0/guide/upgrading/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/2.4.0/guide/upgrading/index.md -------------------------------------------------------------------------------- /www/docs/en/2.4.0/guide/whitelist/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/2.4.0/guide/whitelist/index.md -------------------------------------------------------------------------------- /www/docs/en/2.4.0/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/2.4.0/index.md -------------------------------------------------------------------------------- /www/docs/en/2.5.0/cordova/camera/camera.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/2.5.0/cordova/camera/camera.md -------------------------------------------------------------------------------- /www/docs/en/2.5.0/cordova/compass/compass.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/2.5.0/cordova/compass/compass.md -------------------------------------------------------------------------------- /www/docs/en/2.5.0/cordova/device/device.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/2.5.0/cordova/device/device.md -------------------------------------------------------------------------------- /www/docs/en/2.5.0/cordova/events/events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/2.5.0/cordova/events/events.md -------------------------------------------------------------------------------- /www/docs/en/2.5.0/cordova/file/file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/2.5.0/cordova/file/file.md -------------------------------------------------------------------------------- /www/docs/en/2.5.0/cordova/media/media.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/2.5.0/cordova/media/media.md -------------------------------------------------------------------------------- /www/docs/en/2.5.0/cordova/storage/storage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/2.5.0/cordova/storage/storage.md -------------------------------------------------------------------------------- /www/docs/en/2.5.0/guide/upgrading/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/2.5.0/guide/upgrading/index.md -------------------------------------------------------------------------------- /www/docs/en/2.5.0/guide/whitelist/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/2.5.0/guide/whitelist/index.md -------------------------------------------------------------------------------- /www/docs/en/2.5.0/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/2.5.0/index.md -------------------------------------------------------------------------------- /www/docs/en/2.6.0/cordova/camera/camera.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/2.6.0/cordova/camera/camera.md -------------------------------------------------------------------------------- /www/docs/en/2.6.0/cordova/compass/compass.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/2.6.0/cordova/compass/compass.md -------------------------------------------------------------------------------- /www/docs/en/2.6.0/cordova/device/device.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/2.6.0/cordova/device/device.md -------------------------------------------------------------------------------- /www/docs/en/2.6.0/cordova/events/events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/2.6.0/cordova/events/events.md -------------------------------------------------------------------------------- /www/docs/en/2.6.0/cordova/file/file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/2.6.0/cordova/file/file.md -------------------------------------------------------------------------------- /www/docs/en/2.6.0/cordova/media/media.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/2.6.0/cordova/media/media.md -------------------------------------------------------------------------------- /www/docs/en/2.6.0/cordova/storage/storage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/2.6.0/cordova/storage/storage.md -------------------------------------------------------------------------------- /www/docs/en/2.6.0/guide/upgrading/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/2.6.0/guide/upgrading/index.md -------------------------------------------------------------------------------- /www/docs/en/2.6.0/guide/whitelist/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/2.6.0/guide/whitelist/index.md -------------------------------------------------------------------------------- /www/docs/en/2.6.0/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/2.6.0/index.md -------------------------------------------------------------------------------- /www/docs/en/2.7.0/cordova/camera/camera.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/2.7.0/cordova/camera/camera.md -------------------------------------------------------------------------------- /www/docs/en/2.7.0/cordova/compass/compass.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/2.7.0/cordova/compass/compass.md -------------------------------------------------------------------------------- /www/docs/en/2.7.0/cordova/device/device.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/2.7.0/cordova/device/device.md -------------------------------------------------------------------------------- /www/docs/en/2.7.0/cordova/events/events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/2.7.0/cordova/events/events.md -------------------------------------------------------------------------------- /www/docs/en/2.7.0/cordova/file/file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/2.7.0/cordova/file/file.md -------------------------------------------------------------------------------- /www/docs/en/2.7.0/cordova/media/media.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/2.7.0/cordova/media/media.md -------------------------------------------------------------------------------- /www/docs/en/2.7.0/cordova/storage/storage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/2.7.0/cordova/storage/storage.md -------------------------------------------------------------------------------- /www/docs/en/2.7.0/guide/upgrading/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/2.7.0/guide/upgrading/index.md -------------------------------------------------------------------------------- /www/docs/en/2.7.0/guide/whitelist/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/2.7.0/guide/whitelist/index.md -------------------------------------------------------------------------------- /www/docs/en/2.7.0/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/2.7.0/index.md -------------------------------------------------------------------------------- /www/docs/en/2.8.0/cordova/camera/camera.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/2.8.0/cordova/camera/camera.md -------------------------------------------------------------------------------- /www/docs/en/2.8.0/cordova/compass/compass.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/2.8.0/cordova/compass/compass.md -------------------------------------------------------------------------------- /www/docs/en/2.8.0/cordova/device/device.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/2.8.0/cordova/device/device.md -------------------------------------------------------------------------------- /www/docs/en/2.8.0/cordova/events/events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/2.8.0/cordova/events/events.md -------------------------------------------------------------------------------- /www/docs/en/2.8.0/cordova/file/file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/2.8.0/cordova/file/file.md -------------------------------------------------------------------------------- /www/docs/en/2.8.0/cordova/media/media.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/2.8.0/cordova/media/media.md -------------------------------------------------------------------------------- /www/docs/en/2.8.0/cordova/storage/storage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/2.8.0/cordova/storage/storage.md -------------------------------------------------------------------------------- /www/docs/en/2.8.0/guide/privacy/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/2.8.0/guide/privacy/index.md -------------------------------------------------------------------------------- /www/docs/en/2.8.0/guide/upgrading/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/2.8.0/guide/upgrading/index.md -------------------------------------------------------------------------------- /www/docs/en/2.8.0/guide/whitelist/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/2.8.0/guide/whitelist/index.md -------------------------------------------------------------------------------- /www/docs/en/2.8.0/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/2.8.0/index.md -------------------------------------------------------------------------------- /www/docs/en/2.9.0/cordova/camera/camera.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/2.9.0/cordova/camera/camera.md -------------------------------------------------------------------------------- /www/docs/en/2.9.0/cordova/compass/compass.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/2.9.0/cordova/compass/compass.md -------------------------------------------------------------------------------- /www/docs/en/2.9.0/cordova/device/device.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/2.9.0/cordova/device/device.md -------------------------------------------------------------------------------- /www/docs/en/2.9.0/cordova/events/events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/2.9.0/cordova/events/events.md -------------------------------------------------------------------------------- /www/docs/en/2.9.0/cordova/file/file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/2.9.0/cordova/file/file.md -------------------------------------------------------------------------------- /www/docs/en/2.9.0/cordova/media/media.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/2.9.0/cordova/media/media.md -------------------------------------------------------------------------------- /www/docs/en/2.9.0/cordova/storage/storage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/2.9.0/cordova/storage/storage.md -------------------------------------------------------------------------------- /www/docs/en/2.9.0/guide/cli/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/2.9.0/guide/cli/index.md -------------------------------------------------------------------------------- /www/docs/en/2.9.0/guide/overview/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/2.9.0/guide/overview/index.md -------------------------------------------------------------------------------- /www/docs/en/2.9.0/guide/privacy/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/2.9.0/guide/privacy/index.md -------------------------------------------------------------------------------- /www/docs/en/2.9.0/guide/upgrading/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/2.9.0/guide/upgrading/index.md -------------------------------------------------------------------------------- /www/docs/en/2.9.0/guide/whitelist/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/2.9.0/guide/whitelist/index.md -------------------------------------------------------------------------------- /www/docs/en/2.9.0/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/2.9.0/index.md -------------------------------------------------------------------------------- /www/docs/en/3.0.0/config_ref/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/3.0.0/config_ref/index.md -------------------------------------------------------------------------------- /www/docs/en/3.0.0/cordova/camera/camera.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/3.0.0/cordova/camera/camera.md -------------------------------------------------------------------------------- /www/docs/en/3.0.0/cordova/compass/compass.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/3.0.0/cordova/compass/compass.md -------------------------------------------------------------------------------- /www/docs/en/3.0.0/cordova/device/device.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/3.0.0/cordova/device/device.md -------------------------------------------------------------------------------- /www/docs/en/3.0.0/cordova/events/events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/3.0.0/cordova/events/events.md -------------------------------------------------------------------------------- /www/docs/en/3.0.0/cordova/file/file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/3.0.0/cordova/file/file.md -------------------------------------------------------------------------------- /www/docs/en/3.0.0/cordova/media/media.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/3.0.0/cordova/media/media.md -------------------------------------------------------------------------------- /www/docs/en/3.0.0/cordova/storage/storage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/3.0.0/cordova/storage/storage.md -------------------------------------------------------------------------------- /www/docs/en/3.0.0/guide/cli/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/3.0.0/guide/cli/index.md -------------------------------------------------------------------------------- /www/docs/en/3.0.0/guide/overview/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/3.0.0/guide/overview/index.md -------------------------------------------------------------------------------- /www/docs/en/3.0.0/guide/platforms/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/3.0.0/guide/platforms/index.md -------------------------------------------------------------------------------- /www/docs/en/3.0.0/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/3.0.0/index.md -------------------------------------------------------------------------------- /www/docs/en/3.0.0/plugin_ref/plugman.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/3.0.0/plugin_ref/plugman.md -------------------------------------------------------------------------------- /www/docs/en/3.0.0/plugin_ref/spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/3.0.0/plugin_ref/spec.md -------------------------------------------------------------------------------- /www/docs/en/3.1.0/config_ref/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/3.1.0/config_ref/index.md -------------------------------------------------------------------------------- /www/docs/en/3.1.0/cordova/camera/camera.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/3.1.0/cordova/camera/camera.md -------------------------------------------------------------------------------- /www/docs/en/3.1.0/cordova/compass/compass.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/3.1.0/cordova/compass/compass.md -------------------------------------------------------------------------------- /www/docs/en/3.1.0/cordova/device/device.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/3.1.0/cordova/device/device.md -------------------------------------------------------------------------------- /www/docs/en/3.1.0/cordova/events/events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/3.1.0/cordova/events/events.md -------------------------------------------------------------------------------- /www/docs/en/3.1.0/cordova/file/file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/3.1.0/cordova/file/file.md -------------------------------------------------------------------------------- /www/docs/en/3.1.0/cordova/media/media.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/3.1.0/cordova/media/media.md -------------------------------------------------------------------------------- /www/docs/en/3.1.0/cordova/storage/storage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/3.1.0/cordova/storage/storage.md -------------------------------------------------------------------------------- /www/docs/en/3.1.0/guide/cli/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/3.1.0/guide/cli/index.md -------------------------------------------------------------------------------- /www/docs/en/3.1.0/guide/overview/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/3.1.0/guide/overview/index.md -------------------------------------------------------------------------------- /www/docs/en/3.1.0/guide/platforms/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/3.1.0/guide/platforms/index.md -------------------------------------------------------------------------------- /www/docs/en/3.1.0/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/3.1.0/index.md -------------------------------------------------------------------------------- /www/docs/en/3.1.0/plugin_ref/plugman.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/3.1.0/plugin_ref/plugman.md -------------------------------------------------------------------------------- /www/docs/en/3.1.0/plugin_ref/spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/3.1.0/plugin_ref/spec.md -------------------------------------------------------------------------------- /www/docs/en/3.2.0/config_ref/images.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/3.2.0/config_ref/images.md -------------------------------------------------------------------------------- /www/docs/en/3.2.0/config_ref/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/3.2.0/config_ref/index.md -------------------------------------------------------------------------------- /www/docs/en/3.2.0/cordova/camera/camera.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/3.2.0/cordova/camera/camera.md -------------------------------------------------------------------------------- /www/docs/en/3.2.0/cordova/compass/compass.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/3.2.0/cordova/compass/compass.md -------------------------------------------------------------------------------- /www/docs/en/3.2.0/cordova/device/device.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/3.2.0/cordova/device/device.md -------------------------------------------------------------------------------- /www/docs/en/3.2.0/cordova/events/events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/3.2.0/cordova/events/events.md -------------------------------------------------------------------------------- /www/docs/en/3.2.0/cordova/file/file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/3.2.0/cordova/file/file.md -------------------------------------------------------------------------------- /www/docs/en/3.2.0/cordova/media/media.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/3.2.0/cordova/media/media.md -------------------------------------------------------------------------------- /www/docs/en/3.2.0/cordova/storage/storage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/3.2.0/cordova/storage/storage.md -------------------------------------------------------------------------------- /www/docs/en/3.2.0/guide/cli/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/3.2.0/guide/cli/index.md -------------------------------------------------------------------------------- /www/docs/en/3.2.0/guide/overview/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/3.2.0/guide/overview/index.md -------------------------------------------------------------------------------- /www/docs/en/3.2.0/guide/platforms/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/3.2.0/guide/platforms/index.md -------------------------------------------------------------------------------- /www/docs/en/3.2.0/guide/support/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/3.2.0/guide/support/index.md -------------------------------------------------------------------------------- /www/docs/en/3.2.0/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/3.2.0/index.md -------------------------------------------------------------------------------- /www/docs/en/3.2.0/plugin_ref/plugman.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/3.2.0/plugin_ref/plugman.md -------------------------------------------------------------------------------- /www/docs/en/3.2.0/plugin_ref/spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/3.2.0/plugin_ref/spec.md -------------------------------------------------------------------------------- /www/docs/en/3.3.0/config_ref/images.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/3.3.0/config_ref/images.md -------------------------------------------------------------------------------- /www/docs/en/3.3.0/config_ref/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/3.3.0/config_ref/index.md -------------------------------------------------------------------------------- /www/docs/en/3.3.0/cordova/camera/camera.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/3.3.0/cordova/camera/camera.md -------------------------------------------------------------------------------- /www/docs/en/3.3.0/cordova/compass/compass.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/3.3.0/cordova/compass/compass.md -------------------------------------------------------------------------------- /www/docs/en/3.3.0/cordova/device/device.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/3.3.0/cordova/device/device.md -------------------------------------------------------------------------------- /www/docs/en/3.3.0/cordova/events/events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/3.3.0/cordova/events/events.md -------------------------------------------------------------------------------- /www/docs/en/3.3.0/cordova/file/file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/3.3.0/cordova/file/file.md -------------------------------------------------------------------------------- /www/docs/en/3.3.0/cordova/media/media.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/3.3.0/cordova/media/media.md -------------------------------------------------------------------------------- /www/docs/en/3.3.0/cordova/storage/storage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/3.3.0/cordova/storage/storage.md -------------------------------------------------------------------------------- /www/docs/en/3.3.0/guide/cli/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/3.3.0/guide/cli/index.md -------------------------------------------------------------------------------- /www/docs/en/3.3.0/guide/overview/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/3.3.0/guide/overview/index.md -------------------------------------------------------------------------------- /www/docs/en/3.3.0/guide/platforms/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/3.3.0/guide/platforms/index.md -------------------------------------------------------------------------------- /www/docs/en/3.3.0/guide/support/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/3.3.0/guide/support/index.md -------------------------------------------------------------------------------- /www/docs/en/3.3.0/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/3.3.0/index.md -------------------------------------------------------------------------------- /www/docs/en/3.3.0/plugin_ref/plugman.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/3.3.0/plugin_ref/plugman.md -------------------------------------------------------------------------------- /www/docs/en/3.3.0/plugin_ref/spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/3.3.0/plugin_ref/spec.md -------------------------------------------------------------------------------- /www/docs/en/3.4.0/config_ref/images.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/3.4.0/config_ref/images.md -------------------------------------------------------------------------------- /www/docs/en/3.4.0/config_ref/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/3.4.0/config_ref/index.md -------------------------------------------------------------------------------- /www/docs/en/3.4.0/cordova/events/events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/3.4.0/cordova/events/events.md -------------------------------------------------------------------------------- /www/docs/en/3.4.0/cordova/storage/storage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/3.4.0/cordova/storage/storage.md -------------------------------------------------------------------------------- /www/docs/en/3.4.0/guide/cli/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/3.4.0/guide/cli/index.md -------------------------------------------------------------------------------- /www/docs/en/3.4.0/guide/overview/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/3.4.0/guide/overview/index.md -------------------------------------------------------------------------------- /www/docs/en/3.4.0/guide/platforms/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/3.4.0/guide/platforms/index.md -------------------------------------------------------------------------------- /www/docs/en/3.4.0/guide/support/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/3.4.0/guide/support/index.md -------------------------------------------------------------------------------- /www/docs/en/3.4.0/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/3.4.0/index.md -------------------------------------------------------------------------------- /www/docs/en/3.4.0/plugin_ref/plugman.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/3.4.0/plugin_ref/plugman.md -------------------------------------------------------------------------------- /www/docs/en/3.4.0/plugin_ref/spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/3.4.0/plugin_ref/spec.md -------------------------------------------------------------------------------- /www/docs/en/3.5.0/config_ref/images.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/3.5.0/config_ref/images.md -------------------------------------------------------------------------------- /www/docs/en/3.5.0/config_ref/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/3.5.0/config_ref/index.md -------------------------------------------------------------------------------- /www/docs/en/3.5.0/cordova/events/events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/3.5.0/cordova/events/events.md -------------------------------------------------------------------------------- /www/docs/en/3.5.0/cordova/storage/storage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/3.5.0/cordova/storage/storage.md -------------------------------------------------------------------------------- /www/docs/en/3.5.0/guide/cli/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/3.5.0/guide/cli/index.md -------------------------------------------------------------------------------- /www/docs/en/3.5.0/guide/next/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/3.5.0/guide/next/index.md -------------------------------------------------------------------------------- /www/docs/en/3.5.0/guide/overview/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/3.5.0/guide/overview/index.md -------------------------------------------------------------------------------- /www/docs/en/3.5.0/guide/platforms/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/3.5.0/guide/platforms/index.md -------------------------------------------------------------------------------- /www/docs/en/3.5.0/guide/support/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/3.5.0/guide/support/index.md -------------------------------------------------------------------------------- /www/docs/en/3.5.0/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/3.5.0/index.md -------------------------------------------------------------------------------- /www/docs/en/3.5.0/plugin_ref/plugman.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/3.5.0/plugin_ref/plugman.md -------------------------------------------------------------------------------- /www/docs/en/3.5.0/plugin_ref/spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/3.5.0/plugin_ref/spec.md -------------------------------------------------------------------------------- /www/docs/en/3.6.0/config_ref/images.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/3.6.0/config_ref/images.md -------------------------------------------------------------------------------- /www/docs/en/3.6.0/config_ref/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/3.6.0/config_ref/index.md -------------------------------------------------------------------------------- /www/docs/en/3.6.0/cordova/events/events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/3.6.0/cordova/events/events.md -------------------------------------------------------------------------------- /www/docs/en/3.6.0/cordova/storage/storage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/3.6.0/cordova/storage/storage.md -------------------------------------------------------------------------------- /www/docs/en/3.6.0/guide/cli/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/3.6.0/guide/cli/index.md -------------------------------------------------------------------------------- /www/docs/en/3.6.0/guide/next/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/3.6.0/guide/next/index.md -------------------------------------------------------------------------------- /www/docs/en/3.6.0/guide/overview/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/3.6.0/guide/overview/index.md -------------------------------------------------------------------------------- /www/docs/en/3.6.0/guide/platforms/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/3.6.0/guide/platforms/index.md -------------------------------------------------------------------------------- /www/docs/en/3.6.0/guide/support/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/3.6.0/guide/support/index.md -------------------------------------------------------------------------------- /www/docs/en/3.6.0/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/3.6.0/index.md -------------------------------------------------------------------------------- /www/docs/en/3.6.0/plugin_ref/plugman.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/3.6.0/plugin_ref/plugman.md -------------------------------------------------------------------------------- /www/docs/en/3.6.0/plugin_ref/spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/3.6.0/plugin_ref/spec.md -------------------------------------------------------------------------------- /www/docs/en/4.0.0/config_ref/images.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/4.0.0/config_ref/images.md -------------------------------------------------------------------------------- /www/docs/en/4.0.0/config_ref/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/4.0.0/config_ref/index.md -------------------------------------------------------------------------------- /www/docs/en/4.0.0/cordova/events/events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/4.0.0/cordova/events/events.md -------------------------------------------------------------------------------- /www/docs/en/4.0.0/cordova/storage/storage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/4.0.0/cordova/storage/storage.md -------------------------------------------------------------------------------- /www/docs/en/4.0.0/guide/cli/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/4.0.0/guide/cli/index.md -------------------------------------------------------------------------------- /www/docs/en/4.0.0/guide/next/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/4.0.0/guide/next/index.md -------------------------------------------------------------------------------- /www/docs/en/4.0.0/guide/overview/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/4.0.0/guide/overview/index.md -------------------------------------------------------------------------------- /www/docs/en/4.0.0/guide/platforms/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/4.0.0/guide/platforms/index.md -------------------------------------------------------------------------------- /www/docs/en/4.0.0/guide/support/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/4.0.0/guide/support/index.md -------------------------------------------------------------------------------- /www/docs/en/4.0.0/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/4.0.0/index.md -------------------------------------------------------------------------------- /www/docs/en/4.0.0/plugin_ref/plugman.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/4.0.0/plugin_ref/plugman.md -------------------------------------------------------------------------------- /www/docs/en/4.0.0/plugin_ref/spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/4.0.0/plugin_ref/spec.md -------------------------------------------------------------------------------- /www/docs/en/5.0.0/config_ref/images.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/5.0.0/config_ref/images.md -------------------------------------------------------------------------------- /www/docs/en/5.0.0/config_ref/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/5.0.0/config_ref/index.md -------------------------------------------------------------------------------- /www/docs/en/5.0.0/cordova/events/events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/5.0.0/cordova/events/events.md -------------------------------------------------------------------------------- /www/docs/en/5.0.0/cordova/storage/storage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/5.0.0/cordova/storage/storage.md -------------------------------------------------------------------------------- /www/docs/en/5.0.0/guide/cli/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/5.0.0/guide/cli/index.md -------------------------------------------------------------------------------- /www/docs/en/5.0.0/guide/next/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/5.0.0/guide/next/index.md -------------------------------------------------------------------------------- /www/docs/en/5.0.0/guide/overview/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/5.0.0/guide/overview/index.md -------------------------------------------------------------------------------- /www/docs/en/5.0.0/guide/platforms/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/5.0.0/guide/platforms/index.md -------------------------------------------------------------------------------- /www/docs/en/5.0.0/guide/support/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/5.0.0/guide/support/index.md -------------------------------------------------------------------------------- /www/docs/en/5.0.0/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/5.0.0/index.md -------------------------------------------------------------------------------- /www/docs/en/5.0.0/plugin_ref/plugman.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/5.0.0/plugin_ref/plugman.md -------------------------------------------------------------------------------- /www/docs/en/5.0.0/plugin_ref/spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/5.0.0/plugin_ref/spec.md -------------------------------------------------------------------------------- /www/docs/en/5.1.1/config_ref/images.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/5.1.1/config_ref/images.md -------------------------------------------------------------------------------- /www/docs/en/5.1.1/config_ref/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/5.1.1/config_ref/index.md -------------------------------------------------------------------------------- /www/docs/en/5.1.1/cordova/events/events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/5.1.1/cordova/events/events.md -------------------------------------------------------------------------------- /www/docs/en/5.1.1/cordova/storage/storage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/5.1.1/cordova/storage/storage.md -------------------------------------------------------------------------------- /www/docs/en/5.1.1/guide/cli/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/5.1.1/guide/cli/index.md -------------------------------------------------------------------------------- /www/docs/en/5.1.1/guide/next/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/5.1.1/guide/next/index.md -------------------------------------------------------------------------------- /www/docs/en/5.1.1/guide/overview/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/5.1.1/guide/overview/index.md -------------------------------------------------------------------------------- /www/docs/en/5.1.1/guide/platforms/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/5.1.1/guide/platforms/index.md -------------------------------------------------------------------------------- /www/docs/en/5.1.1/guide/support/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/5.1.1/guide/support/index.md -------------------------------------------------------------------------------- /www/docs/en/5.1.1/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/5.1.1/index.md -------------------------------------------------------------------------------- /www/docs/en/5.1.1/plugin_ref/plugman.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/5.1.1/plugin_ref/plugman.md -------------------------------------------------------------------------------- /www/docs/en/5.1.1/plugin_ref/spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/5.1.1/plugin_ref/spec.md -------------------------------------------------------------------------------- /www/docs/en/5.4.0/config_ref/images.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/5.4.0/config_ref/images.md -------------------------------------------------------------------------------- /www/docs/en/5.4.0/config_ref/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/5.4.0/config_ref/index.md -------------------------------------------------------------------------------- /www/docs/en/5.4.0/cordova/events/events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/5.4.0/cordova/events/events.md -------------------------------------------------------------------------------- /www/docs/en/5.4.0/cordova/storage/storage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/5.4.0/cordova/storage/storage.md -------------------------------------------------------------------------------- /www/docs/en/5.4.0/guide/cli/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/5.4.0/guide/cli/index.md -------------------------------------------------------------------------------- /www/docs/en/5.4.0/guide/next/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/5.4.0/guide/next/index.md -------------------------------------------------------------------------------- /www/docs/en/5.4.0/guide/overview/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/5.4.0/guide/overview/index.md -------------------------------------------------------------------------------- /www/docs/en/5.4.0/guide/platforms/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/5.4.0/guide/platforms/index.md -------------------------------------------------------------------------------- /www/docs/en/5.4.0/guide/support/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/5.4.0/guide/support/index.md -------------------------------------------------------------------------------- /www/docs/en/5.4.0/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/5.4.0/index.md -------------------------------------------------------------------------------- /www/docs/en/5.4.0/plugin_ref/plugman.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/5.4.0/plugin_ref/plugman.md -------------------------------------------------------------------------------- /www/docs/en/5.4.0/plugin_ref/spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/5.4.0/plugin_ref/spec.md -------------------------------------------------------------------------------- /www/docs/en/6.x/config_ref/images.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/6.x/config_ref/images.md -------------------------------------------------------------------------------- /www/docs/en/6.x/config_ref/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/6.x/config_ref/index.md -------------------------------------------------------------------------------- /www/docs/en/6.x/cordova/events/events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/6.x/cordova/events/events.md -------------------------------------------------------------------------------- /www/docs/en/6.x/cordova/storage/storage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/6.x/cordova/storage/storage.md -------------------------------------------------------------------------------- /www/docs/en/6.x/guide/appdev/hooks/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/6.x/guide/appdev/hooks/index.md -------------------------------------------------------------------------------- /www/docs/en/6.x/guide/cli/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/6.x/guide/cli/index.md -------------------------------------------------------------------------------- /www/docs/en/6.x/guide/cli/template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/6.x/guide/cli/template.md -------------------------------------------------------------------------------- /www/docs/en/6.x/guide/next/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/6.x/guide/next/index.md -------------------------------------------------------------------------------- /www/docs/en/6.x/guide/overview/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/6.x/guide/overview/index.md -------------------------------------------------------------------------------- /www/docs/en/6.x/guide/platforms/ios/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/6.x/guide/platforms/ios/index.md -------------------------------------------------------------------------------- /www/docs/en/6.x/guide/support/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/6.x/guide/support/index.md -------------------------------------------------------------------------------- /www/docs/en/6.x/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/6.x/index.md -------------------------------------------------------------------------------- /www/docs/en/6.x/plugin_ref/plugman.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/6.x/plugin_ref/plugman.md -------------------------------------------------------------------------------- /www/docs/en/6.x/plugin_ref/spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/6.x/plugin_ref/spec.md -------------------------------------------------------------------------------- /www/docs/en/7.x/config_ref/images.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/7.x/config_ref/images.md -------------------------------------------------------------------------------- /www/docs/en/7.x/config_ref/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/7.x/config_ref/index.md -------------------------------------------------------------------------------- /www/docs/en/7.x/cordova/events/events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/7.x/cordova/events/events.md -------------------------------------------------------------------------------- /www/docs/en/7.x/guide/cli/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/7.x/guide/cli/index.md -------------------------------------------------------------------------------- /www/docs/en/7.x/guide/cli/template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/7.x/guide/cli/template.md -------------------------------------------------------------------------------- /www/docs/en/7.x/guide/next/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/7.x/guide/next/index.md -------------------------------------------------------------------------------- /www/docs/en/7.x/guide/overview/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/7.x/guide/overview/index.md -------------------------------------------------------------------------------- /www/docs/en/7.x/guide/support/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/7.x/guide/support/index.md -------------------------------------------------------------------------------- /www/docs/en/7.x/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/7.x/index.md -------------------------------------------------------------------------------- /www/docs/en/7.x/plugin_ref/plugman.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/7.x/plugin_ref/plugman.md -------------------------------------------------------------------------------- /www/docs/en/7.x/plugin_ref/spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/7.x/plugin_ref/spec.md -------------------------------------------------------------------------------- /www/docs/en/8.x/config_ref/images.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/8.x/config_ref/images.md -------------------------------------------------------------------------------- /www/docs/en/8.x/config_ref/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/8.x/config_ref/index.md -------------------------------------------------------------------------------- /www/docs/en/8.x/cordova/events/events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/8.x/cordova/events/events.md -------------------------------------------------------------------------------- /www/docs/en/8.x/guide/cli/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/8.x/guide/cli/index.md -------------------------------------------------------------------------------- /www/docs/en/8.x/guide/cli/template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/8.x/guide/cli/template.md -------------------------------------------------------------------------------- /www/docs/en/8.x/guide/next/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/8.x/guide/next/index.md -------------------------------------------------------------------------------- /www/docs/en/8.x/guide/overview/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/8.x/guide/overview/index.md -------------------------------------------------------------------------------- /www/docs/en/8.x/guide/support/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/8.x/guide/support/index.md -------------------------------------------------------------------------------- /www/docs/en/8.x/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/8.x/index.md -------------------------------------------------------------------------------- /www/docs/en/8.x/plugin_ref/plugman.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/8.x/plugin_ref/plugman.md -------------------------------------------------------------------------------- /www/docs/en/8.x/plugin_ref/spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/8.x/plugin_ref/spec.md -------------------------------------------------------------------------------- /www/docs/en/9.x/config_ref/images.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/9.x/config_ref/images.md -------------------------------------------------------------------------------- /www/docs/en/9.x/config_ref/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/9.x/config_ref/index.md -------------------------------------------------------------------------------- /www/docs/en/9.x/cordova/events/events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/9.x/cordova/events/events.md -------------------------------------------------------------------------------- /www/docs/en/9.x/guide/cli/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/9.x/guide/cli/index.md -------------------------------------------------------------------------------- /www/docs/en/9.x/guide/cli/template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/9.x/guide/cli/template.md -------------------------------------------------------------------------------- /www/docs/en/9.x/guide/next/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/9.x/guide/next/index.md -------------------------------------------------------------------------------- /www/docs/en/9.x/guide/overview/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/9.x/guide/overview/index.md -------------------------------------------------------------------------------- /www/docs/en/9.x/guide/support/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/9.x/guide/support/index.md -------------------------------------------------------------------------------- /www/docs/en/9.x/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/9.x/index.md -------------------------------------------------------------------------------- /www/docs/en/9.x/platform_pinning/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/9.x/platform_pinning/index.md -------------------------------------------------------------------------------- /www/docs/en/9.x/plugin_ref/plugman.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/9.x/plugin_ref/plugman.md -------------------------------------------------------------------------------- /www/docs/en/9.x/plugin_ref/spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/9.x/plugin_ref/spec.md -------------------------------------------------------------------------------- /www/docs/en/deprecated.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/deprecated.md -------------------------------------------------------------------------------- /www/docs/en/dev/config_ref/images.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/dev/config_ref/images.md -------------------------------------------------------------------------------- /www/docs/en/dev/config_ref/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/dev/config_ref/index.md -------------------------------------------------------------------------------- /www/docs/en/dev/cordova/events/events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/dev/cordova/events/events.md -------------------------------------------------------------------------------- /www/docs/en/dev/guide/cli/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/dev/guide/cli/index.md -------------------------------------------------------------------------------- /www/docs/en/dev/guide/cli/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/dev/guide/cli/installation.md -------------------------------------------------------------------------------- /www/docs/en/dev/guide/cli/template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/dev/guide/cli/template.md -------------------------------------------------------------------------------- /www/docs/en/dev/guide/next/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/dev/guide/next/index.md -------------------------------------------------------------------------------- /www/docs/en/dev/guide/overview/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/dev/guide/overview/index.md -------------------------------------------------------------------------------- /www/docs/en/dev/guide/support/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/dev/guide/support/index.md -------------------------------------------------------------------------------- /www/docs/en/dev/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/dev/index.md -------------------------------------------------------------------------------- /www/docs/en/dev/platform_pinning/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/dev/platform_pinning/index.md -------------------------------------------------------------------------------- /www/docs/en/dev/plugin_ref/plugman.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/dev/plugin_ref/plugman.md -------------------------------------------------------------------------------- /www/docs/en/dev/plugin_ref/spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/dev/plugin_ref/spec.md -------------------------------------------------------------------------------- /www/docs/en/dev/third-party/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/docs/en/dev/third-party/index.md -------------------------------------------------------------------------------- /www/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/favicon.ico -------------------------------------------------------------------------------- /www/feed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/feed.xml -------------------------------------------------------------------------------- /www/http/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/http/404.html -------------------------------------------------------------------------------- /www/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/index.html -------------------------------------------------------------------------------- /www/infra/doap_Cordova.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/infra/doap_Cordova.rdf -------------------------------------------------------------------------------- /www/infra/doap_Cordova_PMC.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/infra/doap_Cordova_PMC.rdf -------------------------------------------------------------------------------- /www/plugins/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/plugins/index.html -------------------------------------------------------------------------------- /www/privacy/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/privacy/index.md -------------------------------------------------------------------------------- /www/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/robots.txt -------------------------------------------------------------------------------- /www/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/sitemap.xml -------------------------------------------------------------------------------- /www/static/css-src/_artwork.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/static/css-src/_artwork.scss -------------------------------------------------------------------------------- /www/static/css-src/_blog.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/static/css-src/_blog.scss -------------------------------------------------------------------------------- /www/static/css-src/_contact.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/static/css-src/_contact.scss -------------------------------------------------------------------------------- /www/static/css-src/_contribute.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/static/css-src/_contribute.scss -------------------------------------------------------------------------------- /www/static/css-src/_docs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/static/css-src/_docs.scss -------------------------------------------------------------------------------- /www/static/css-src/_home.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/static/css-src/_home.scss -------------------------------------------------------------------------------- /www/static/css-src/_plugins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/static/css-src/_plugins.scss -------------------------------------------------------------------------------- /www/static/css-src/_team.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/static/css-src/_team.scss -------------------------------------------------------------------------------- /www/static/css-src/fonts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/static/css-src/fonts.scss -------------------------------------------------------------------------------- /www/static/css-src/lib/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/static/css-src/lib/bootstrap.css -------------------------------------------------------------------------------- /www/static/css-src/lib/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/static/css-src/lib/bootstrap.css.map -------------------------------------------------------------------------------- /www/static/css-src/lib/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/static/css-src/lib/bootstrap.min.css -------------------------------------------------------------------------------- /www/static/css-src/lib/syntax.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/static/css-src/lib/syntax.css -------------------------------------------------------------------------------- /www/static/css-src/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/static/css-src/main.scss -------------------------------------------------------------------------------- /www/static/downloads/BlueZedEx.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/static/downloads/BlueZedEx.mp3 -------------------------------------------------------------------------------- /www/static/downloads/icons.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/static/downloads/icons.zip -------------------------------------------------------------------------------- /www/static/downloads/logos.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/static/downloads/logos.zip -------------------------------------------------------------------------------- /www/static/downloads/screens.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/static/downloads/screens.zip -------------------------------------------------------------------------------- /www/static/fonts/raleway/Raleway-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/static/fonts/raleway/Raleway-Bold.ttf -------------------------------------------------------------------------------- /www/static/fonts/raleway/Raleway-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/static/fonts/raleway/Raleway-Thin.ttf -------------------------------------------------------------------------------- /www/static/img/3rdparty_logo_sprite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/static/img/3rdparty_logo_sprite.svg -------------------------------------------------------------------------------- /www/static/img/4-platforms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/static/img/4-platforms.png -------------------------------------------------------------------------------- /www/static/img/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/static/img/arrow.png -------------------------------------------------------------------------------- /www/static/img/bug_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/static/img/bug_icon.svg -------------------------------------------------------------------------------- /www/static/img/copy-clipboard-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/static/img/copy-clipboard-icon.svg -------------------------------------------------------------------------------- /www/static/img/cordova-logo-newbrand.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/static/img/cordova-logo-newbrand.svg -------------------------------------------------------------------------------- /www/static/img/cordova-node-timeline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/static/img/cordova-node-timeline.svg -------------------------------------------------------------------------------- /www/static/img/cordova_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/static/img/cordova_128.png -------------------------------------------------------------------------------- /www/static/img/cordova_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/static/img/cordova_16.png -------------------------------------------------------------------------------- /www/static/img/cordova_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/static/img/cordova_24.png -------------------------------------------------------------------------------- /www/static/img/cordova_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/static/img/cordova_256.png -------------------------------------------------------------------------------- /www/static/img/cordova_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/static/img/cordova_32.png -------------------------------------------------------------------------------- /www/static/img/cordova_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/static/img/cordova_48.png -------------------------------------------------------------------------------- /www/static/img/cordova_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/static/img/cordova_512.png -------------------------------------------------------------------------------- /www/static/img/cordova_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/static/img/cordova_64.png -------------------------------------------------------------------------------- /www/static/img/cordova_bot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/static/img/cordova_bot.jpg -------------------------------------------------------------------------------- /www/static/img/cordova_bot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/static/img/cordova_bot.png -------------------------------------------------------------------------------- /www/static/img/github-mark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/static/img/github-mark.png -------------------------------------------------------------------------------- /www/static/img/grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/static/img/grid.png -------------------------------------------------------------------------------- /www/static/img/guide/cli/template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/static/img/guide/cli/template.png -------------------------------------------------------------------------------- /www/static/img/guide/platforms/wp8/vmware_advanced_opts.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/static/img/line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/static/img/line.png -------------------------------------------------------------------------------- /www/static/img/logo_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/static/img/logo_full.png -------------------------------------------------------------------------------- /www/static/img/logo_full_2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/static/img/logo_full_2.svg -------------------------------------------------------------------------------- /www/static/img/logo_text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/static/img/logo_text.svg -------------------------------------------------------------------------------- /www/static/img/npm-mark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/static/img/npm-mark.png -------------------------------------------------------------------------------- /www/static/img/platform-logos.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/static/img/platform-logos.svg -------------------------------------------------------------------------------- /www/static/img/pluggy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/static/img/pluggy.png -------------------------------------------------------------------------------- /www/static/img/post-next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/static/img/post-next.png -------------------------------------------------------------------------------- /www/static/img/post-prev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/static/img/post-prev.png -------------------------------------------------------------------------------- /www/static/img/search_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/static/img/search_icon.svg -------------------------------------------------------------------------------- /www/static/img/search_icon_hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/static/img/search_icon_hover.svg -------------------------------------------------------------------------------- /www/static/img/shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/static/img/shadow.png -------------------------------------------------------------------------------- /www/static/img/showcase-apps/Buildr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/static/img/showcase-apps/Buildr.png -------------------------------------------------------------------------------- /www/static/img/showcase-apps/FanReact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/static/img/showcase-apps/FanReact.png -------------------------------------------------------------------------------- /www/static/img/showcase-apps/Graded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/static/img/showcase-apps/Graded.png -------------------------------------------------------------------------------- /www/static/img/showcase-apps/Gudog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/static/img/showcase-apps/Gudog.png -------------------------------------------------------------------------------- /www/static/img/showcase-apps/Keepe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/static/img/showcase-apps/Keepe.png -------------------------------------------------------------------------------- /www/static/img/showcase-apps/OneVerse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/static/img/showcase-apps/OneVerse.png -------------------------------------------------------------------------------- /www/static/img/showcase-apps/Pacifica.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/static/img/showcase-apps/Pacifica.png -------------------------------------------------------------------------------- /www/static/img/showcase-apps/Sworkit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/static/img/showcase-apps/Sworkit.png -------------------------------------------------------------------------------- /www/static/img/slack_rgb_300_141.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/static/img/slack_rgb_300_141.png -------------------------------------------------------------------------------- /www/static/img/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/static/img/splash.png -------------------------------------------------------------------------------- /www/static/img/sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/static/img/sprite.png -------------------------------------------------------------------------------- /www/static/img/subscribe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/static/img/subscribe.png -------------------------------------------------------------------------------- /www/static/img/team/profiles/breautek.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/static/img/team/profiles/breautek.png -------------------------------------------------------------------------------- /www/static/img/team/profiles/dpogue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/static/img/team/profiles/dpogue.png -------------------------------------------------------------------------------- /www/static/img/team/profiles/erisu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/static/img/team/profiles/erisu.png -------------------------------------------------------------------------------- /www/static/img/tools/appbuilder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/static/img/tools/appbuilder.png -------------------------------------------------------------------------------- /www/static/img/tools/appstudio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/static/img/tools/appstudio.png -------------------------------------------------------------------------------- /www/static/img/tools/cocoon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/static/img/tools/cocoon.png -------------------------------------------------------------------------------- /www/static/img/tools/cordova.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/static/img/tools/cordova.png -------------------------------------------------------------------------------- /www/static/img/tools/evothings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/static/img/tools/evothings.png -------------------------------------------------------------------------------- /www/static/img/tools/framework7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/static/img/tools/framework7.png -------------------------------------------------------------------------------- /www/static/img/tools/instabug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/static/img/tools/instabug.png -------------------------------------------------------------------------------- /www/static/img/tools/ionic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/static/img/tools/ionic.png -------------------------------------------------------------------------------- /www/static/img/tools/mobiscroll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/static/img/tools/mobiscroll.png -------------------------------------------------------------------------------- /www/static/img/tools/monaca.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/static/img/tools/monaca.png -------------------------------------------------------------------------------- /www/static/img/tools/onsen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/static/img/tools/onsen.png -------------------------------------------------------------------------------- /www/static/img/tools/phonegap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/static/img/tools/phonegap.svg -------------------------------------------------------------------------------- /www/static/img/tools/quasar-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/static/img/tools/quasar-logo.svg -------------------------------------------------------------------------------- /www/static/img/tools/voltbuilder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/static/img/tools/voltbuilder.png -------------------------------------------------------------------------------- /www/static/img/tools/voltsigner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/static/img/tools/voltsigner.png -------------------------------------------------------------------------------- /www/static/img/twitter_profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/static/img/twitter_profile.png -------------------------------------------------------------------------------- /www/static/img/valid-rss-rogers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/static/img/valid-rss-rogers.png -------------------------------------------------------------------------------- /www/static/img/value-prop-sprite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/static/img/value-prop-sprite.svg -------------------------------------------------------------------------------- /www/static/img/wisplight.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/static/img/wisplight.jpg -------------------------------------------------------------------------------- /www/static/js/404.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/static/js/404.js -------------------------------------------------------------------------------- /www/static/js/docs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/static/js/docs.js -------------------------------------------------------------------------------- /www/static/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/static/js/index.js -------------------------------------------------------------------------------- /www/static/js/lib/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/static/js/lib/bootstrap.js -------------------------------------------------------------------------------- /www/static/js/lib/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/static/js/lib/bootstrap.min.js -------------------------------------------------------------------------------- /www/static/js/lib/jquery-2.1.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/static/js/lib/jquery-2.1.1.min.js -------------------------------------------------------------------------------- /www/static/js/lib/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/static/js/lib/npm.js -------------------------------------------------------------------------------- /www/static/js/lib/toc.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/static/js/lib/toc.min.js -------------------------------------------------------------------------------- /www/wiki-images/contributor-git.graphml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/wiki-images/contributor-git.graphml -------------------------------------------------------------------------------- /www/wiki-images/contributor-git.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/cordova-docs/HEAD/www/wiki-images/contributor-git.png --------------------------------------------------------------------------------