├── .babelrc ├── .eslintrc ├── .gitignore ├── .npmignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── config.xml ├── hooks └── README.md ├── icon.png ├── karma.conf.js ├── package.json ├── platforms ├── browser │ ├── browser.json │ ├── config.xml │ ├── cordova │ │ ├── build │ │ ├── build.bat │ │ ├── clean │ │ ├── defaults.xml │ │ ├── lib │ │ │ ├── build.js │ │ │ ├── check_reqs.js │ │ │ └── clean.js │ │ ├── run │ │ ├── run.bat │ │ ├── version │ │ └── version.bat │ ├── css │ │ └── index.css │ ├── img │ │ └── logo.png │ ├── index.html │ ├── js │ │ └── index.js │ ├── manifest.webapp │ ├── platform_www │ │ ├── confighelper.js │ │ ├── cordova-js-src │ │ │ ├── confighelper.js │ │ │ ├── exec.js │ │ │ └── platform.js │ │ ├── cordova.js │ │ ├── cordova_plugins.js │ │ ├── exec.js │ │ ├── platform.js │ │ └── plugins │ │ │ ├── cordova-plugin-battery-status │ │ │ ├── src │ │ │ │ └── browser │ │ │ │ │ └── BatteryProxy.js │ │ │ └── www │ │ │ │ └── battery.js │ │ │ ├── cordova-plugin-camera │ │ │ ├── src │ │ │ │ └── browser │ │ │ │ │ └── CameraProxy.js │ │ │ └── www │ │ │ │ ├── Camera.js │ │ │ │ ├── CameraConstants.js │ │ │ │ └── CameraPopoverOptions.js │ │ │ ├── cordova-plugin-contacts │ │ │ └── www │ │ │ │ ├── Contact.js │ │ │ │ ├── ContactAddress.js │ │ │ │ ├── ContactError.js │ │ │ │ ├── ContactField.js │ │ │ │ ├── ContactFieldType.js │ │ │ │ ├── ContactFindOptions.js │ │ │ │ ├── ContactName.js │ │ │ │ ├── ContactOrganization.js │ │ │ │ └── contacts.js │ │ │ ├── cordova-plugin-device-motion │ │ │ ├── src │ │ │ │ └── browser │ │ │ │ │ └── AccelerometerProxy.js │ │ │ └── www │ │ │ │ ├── Acceleration.js │ │ │ │ └── accelerometer.js │ │ │ ├── cordova-plugin-device-orientation │ │ │ ├── src │ │ │ │ └── browser │ │ │ │ │ └── CompassProxy.js │ │ │ └── www │ │ │ │ ├── CompassError.js │ │ │ │ ├── CompassHeading.js │ │ │ │ └── compass.js │ │ │ ├── cordova-plugin-device │ │ │ ├── src │ │ │ │ └── browser │ │ │ │ │ └── DeviceProxy.js │ │ │ └── www │ │ │ │ └── device.js │ │ │ ├── cordova-plugin-dialogs │ │ │ └── www │ │ │ │ ├── browser │ │ │ │ └── notification.js │ │ │ │ └── notification.js │ │ │ ├── cordova-plugin-file-transfer │ │ │ └── www │ │ │ │ ├── FileTransfer.js │ │ │ │ ├── FileTransferError.js │ │ │ │ └── browser │ │ │ │ └── FileTransfer.js │ │ │ ├── cordova-plugin-file │ │ │ ├── src │ │ │ │ └── browser │ │ │ │ │ └── FileProxy.js │ │ │ └── www │ │ │ │ ├── DirectoryEntry.js │ │ │ │ ├── DirectoryReader.js │ │ │ │ ├── Entry.js │ │ │ │ ├── File.js │ │ │ │ ├── FileEntry.js │ │ │ │ ├── FileError.js │ │ │ │ ├── FileReader.js │ │ │ │ ├── FileSystem.js │ │ │ │ ├── FileUploadOptions.js │ │ │ │ ├── FileUploadResult.js │ │ │ │ ├── FileWriter.js │ │ │ │ ├── Flags.js │ │ │ │ ├── LocalFileSystem.js │ │ │ │ ├── Metadata.js │ │ │ │ ├── ProgressEvent.js │ │ │ │ ├── browser │ │ │ │ ├── FileSystem.js │ │ │ │ ├── Preparing.js │ │ │ │ └── isChrome.js │ │ │ │ ├── fileSystemPaths.js │ │ │ │ ├── fileSystems.js │ │ │ │ ├── requestFileSystem.js │ │ │ │ └── resolveLocalFileSystemURI.js │ │ │ ├── cordova-plugin-globalization │ │ │ ├── src │ │ │ │ └── browser │ │ │ │ │ └── GlobalizationProxy.js │ │ │ └── www │ │ │ │ ├── GlobalizationError.js │ │ │ │ ├── browser │ │ │ │ └── moment.js │ │ │ │ └── globalization.js │ │ │ ├── cordova-plugin-inappbrowser │ │ │ ├── src │ │ │ │ └── browser │ │ │ │ │ └── InAppBrowserProxy.js │ │ │ └── www │ │ │ │ └── inappbrowser.js │ │ │ ├── cordova-plugin-media-capture │ │ │ ├── src │ │ │ │ └── browser │ │ │ │ │ └── CaptureProxy.js │ │ │ └── www │ │ │ │ ├── CaptureAudioOptions.js │ │ │ │ ├── CaptureError.js │ │ │ │ ├── CaptureImageOptions.js │ │ │ │ ├── CaptureVideoOptions.js │ │ │ │ ├── MediaFile.js │ │ │ │ ├── MediaFileData.js │ │ │ │ └── capture.js │ │ │ ├── cordova-plugin-media │ │ │ └── www │ │ │ │ ├── Media.js │ │ │ │ ├── MediaError.js │ │ │ │ └── browser │ │ │ │ └── Media.js │ │ │ ├── cordova-plugin-network-information │ │ │ ├── src │ │ │ │ └── browser │ │ │ │ │ └── network.js │ │ │ └── www │ │ │ │ ├── Connection.js │ │ │ │ └── network.js │ │ │ ├── cordova-plugin-splashscreen │ │ │ ├── src │ │ │ │ └── browser │ │ │ │ │ └── SplashScreenProxy.js │ │ │ └── www │ │ │ │ └── splashscreen.js │ │ │ ├── cordova-plugin-statusbar │ │ │ ├── src │ │ │ │ └── browser │ │ │ │ │ └── statusbar.js │ │ │ └── www │ │ │ │ └── statusbar.js │ │ │ └── cordova-plugin-vibration │ │ │ ├── src │ │ │ └── browser │ │ │ │ └── Vibration.js │ │ │ └── www │ │ │ └── vibration.js │ ├── res │ │ └── icon │ │ │ ├── android │ │ │ ├── icon-36-ldpi.png │ │ │ ├── icon-48-mdpi.png │ │ │ ├── icon-72-hdpi.png │ │ │ └── icon-96-xhdpi.png │ │ │ ├── bada-wac │ │ │ ├── icon-48-type5.png │ │ │ ├── icon-50-type3.png │ │ │ └── icon-80-type4.png │ │ │ ├── bada │ │ │ └── icon-128.png │ │ │ ├── blackberry │ │ │ └── icon-80.png │ │ │ ├── blackberry10 │ │ │ └── icon-80.png │ │ │ ├── ios │ │ │ ├── icon-57-2x.png │ │ │ ├── icon-57.png │ │ │ ├── icon-72-2x.png │ │ │ └── icon-72.png │ │ │ ├── tizen │ │ │ └── icon-128.png │ │ │ ├── webos │ │ │ └── icon-64.png │ │ │ └── windows-phone │ │ │ ├── icon-173-tile.png │ │ │ ├── icon-48.png │ │ │ └── icon-62-tile.png │ └── www │ │ ├── config.xml │ │ ├── confighelper.js │ │ ├── cordova-js-src │ │ ├── confighelper.js │ │ ├── exec.js │ │ └── platform.js │ │ ├── cordova.js │ │ ├── cordova_plugins.js │ │ ├── dist │ │ └── build.js │ │ ├── exec.js │ │ ├── images │ │ ├── logo_phonegap.png │ │ └── logo_vue.png │ │ ├── index.html │ │ ├── platform.js │ │ ├── plugins │ │ ├── cordova-plugin-battery-status │ │ │ ├── src │ │ │ │ └── browser │ │ │ │ │ └── BatteryProxy.js │ │ │ └── www │ │ │ │ └── battery.js │ │ ├── cordova-plugin-camera │ │ │ ├── src │ │ │ │ └── browser │ │ │ │ │ └── CameraProxy.js │ │ │ └── www │ │ │ │ ├── Camera.js │ │ │ │ ├── CameraConstants.js │ │ │ │ └── CameraPopoverOptions.js │ │ ├── cordova-plugin-contacts │ │ │ └── www │ │ │ │ ├── Contact.js │ │ │ │ ├── ContactAddress.js │ │ │ │ ├── ContactError.js │ │ │ │ ├── ContactField.js │ │ │ │ ├── ContactFieldType.js │ │ │ │ ├── ContactFindOptions.js │ │ │ │ ├── ContactName.js │ │ │ │ ├── ContactOrganization.js │ │ │ │ └── contacts.js │ │ ├── cordova-plugin-device-motion │ │ │ ├── src │ │ │ │ └── browser │ │ │ │ │ └── AccelerometerProxy.js │ │ │ └── www │ │ │ │ ├── Acceleration.js │ │ │ │ └── accelerometer.js │ │ ├── cordova-plugin-device-orientation │ │ │ ├── src │ │ │ │ └── browser │ │ │ │ │ └── CompassProxy.js │ │ │ └── www │ │ │ │ ├── CompassError.js │ │ │ │ ├── CompassHeading.js │ │ │ │ └── compass.js │ │ ├── cordova-plugin-device │ │ │ ├── src │ │ │ │ └── browser │ │ │ │ │ └── DeviceProxy.js │ │ │ └── www │ │ │ │ └── device.js │ │ ├── cordova-plugin-dialogs │ │ │ └── www │ │ │ │ ├── browser │ │ │ │ └── notification.js │ │ │ │ └── notification.js │ │ ├── cordova-plugin-file-transfer │ │ │ └── www │ │ │ │ ├── FileTransfer.js │ │ │ │ ├── FileTransferError.js │ │ │ │ └── browser │ │ │ │ └── FileTransfer.js │ │ ├── cordova-plugin-file │ │ │ ├── src │ │ │ │ └── browser │ │ │ │ │ └── FileProxy.js │ │ │ └── www │ │ │ │ ├── DirectoryEntry.js │ │ │ │ ├── DirectoryReader.js │ │ │ │ ├── Entry.js │ │ │ │ ├── File.js │ │ │ │ ├── FileEntry.js │ │ │ │ ├── FileError.js │ │ │ │ ├── FileReader.js │ │ │ │ ├── FileSystem.js │ │ │ │ ├── FileUploadOptions.js │ │ │ │ ├── FileUploadResult.js │ │ │ │ ├── FileWriter.js │ │ │ │ ├── Flags.js │ │ │ │ ├── LocalFileSystem.js │ │ │ │ ├── Metadata.js │ │ │ │ ├── ProgressEvent.js │ │ │ │ ├── browser │ │ │ │ ├── FileSystem.js │ │ │ │ ├── Preparing.js │ │ │ │ └── isChrome.js │ │ │ │ ├── fileSystemPaths.js │ │ │ │ ├── fileSystems.js │ │ │ │ ├── requestFileSystem.js │ │ │ │ └── resolveLocalFileSystemURI.js │ │ ├── cordova-plugin-globalization │ │ │ ├── src │ │ │ │ └── browser │ │ │ │ │ └── GlobalizationProxy.js │ │ │ └── www │ │ │ │ ├── GlobalizationError.js │ │ │ │ ├── browser │ │ │ │ └── moment.js │ │ │ │ └── globalization.js │ │ ├── cordova-plugin-inappbrowser │ │ │ ├── src │ │ │ │ └── browser │ │ │ │ │ └── InAppBrowserProxy.js │ │ │ └── www │ │ │ │ └── inappbrowser.js │ │ ├── cordova-plugin-media-capture │ │ │ ├── src │ │ │ │ └── browser │ │ │ │ │ └── CaptureProxy.js │ │ │ └── www │ │ │ │ ├── CaptureAudioOptions.js │ │ │ │ ├── CaptureError.js │ │ │ │ ├── CaptureImageOptions.js │ │ │ │ ├── CaptureVideoOptions.js │ │ │ │ ├── MediaFile.js │ │ │ │ ├── MediaFileData.js │ │ │ │ └── capture.js │ │ ├── cordova-plugin-media │ │ │ └── www │ │ │ │ ├── Media.js │ │ │ │ ├── MediaError.js │ │ │ │ └── browser │ │ │ │ └── Media.js │ │ ├── cordova-plugin-network-information │ │ │ ├── src │ │ │ │ └── browser │ │ │ │ │ └── network.js │ │ │ └── www │ │ │ │ ├── Connection.js │ │ │ │ └── network.js │ │ ├── cordova-plugin-splashscreen │ │ │ ├── src │ │ │ │ └── browser │ │ │ │ │ └── SplashScreenProxy.js │ │ │ └── www │ │ │ │ └── splashscreen.js │ │ ├── cordova-plugin-statusbar │ │ │ ├── src │ │ │ │ └── browser │ │ │ │ │ └── statusbar.js │ │ │ └── www │ │ │ │ └── statusbar.js │ │ └── cordova-plugin-vibration │ │ │ ├── src │ │ │ └── browser │ │ │ │ └── Vibration.js │ │ │ └── www │ │ │ └── vibration.js │ │ ├── res │ │ ├── .pgbomit │ │ ├── icon │ │ │ ├── android │ │ │ │ ├── drawable-hdpi-icon.png │ │ │ │ ├── drawable-ldpi-icon.png │ │ │ │ ├── drawable-mdpi-icon.png │ │ │ │ ├── drawable-xhdpi-icon.png │ │ │ │ ├── drawable-xxhdpi-icon.png │ │ │ │ └── drawable-xxxhdpi-icon.png │ │ │ ├── ios │ │ │ │ ├── icon-40.png │ │ │ │ ├── icon-40@2x.png │ │ │ │ ├── icon-50.png │ │ │ │ ├── icon-50@2x.png │ │ │ │ ├── icon-60.png │ │ │ │ ├── icon-60@2x.png │ │ │ │ ├── icon-60@3x.png │ │ │ │ ├── icon-72.png │ │ │ │ ├── icon-72@2x.png │ │ │ │ ├── icon-76.png │ │ │ │ ├── icon-76@2x.png │ │ │ │ ├── icon-small.png │ │ │ │ ├── icon-small@2x.png │ │ │ │ ├── icon-small@3x.png │ │ │ │ ├── icon.png │ │ │ │ └── icon@2x.png │ │ │ ├── windows │ │ │ │ ├── Square150x150Logo.scale-100.png │ │ │ │ ├── Square150x150Logo.scale-240.png │ │ │ │ ├── Square30x30Logo.scale-100.png │ │ │ │ ├── Square310x310Logo.scale-100.png │ │ │ │ ├── Square44x44Logo.scale-100.png │ │ │ │ ├── Square44x44Logo.scale-240.png │ │ │ │ ├── Square70x70Logo.scale-100.png │ │ │ │ ├── Square71x71Logo.scale-100.png │ │ │ │ ├── Square71x71Logo.scale-240.png │ │ │ │ ├── StoreLogo.scale-100.png │ │ │ │ ├── StoreLogo.scale-240.png │ │ │ │ ├── Wide310x150Logo.scale-100.png │ │ │ │ └── Wide310x150Logo.scale-240.png │ │ │ └── wp8 │ │ │ │ ├── ApplicationIcon.png │ │ │ │ └── Background.png │ │ └── screen │ │ │ ├── android │ │ │ ├── drawable-land-hdpi-screen.png │ │ │ ├── drawable-land-ldpi-screen.png │ │ │ ├── drawable-land-mdpi-screen.png │ │ │ ├── drawable-land-xhdpi-screen.png │ │ │ ├── drawable-land-xxhdpi-screen.png │ │ │ ├── drawable-land-xxxhdpi-screen.png │ │ │ ├── drawable-port-hdpi-screen.png │ │ │ ├── drawable-port-ldpi-screen.png │ │ │ ├── drawable-port-mdpi-screen.png │ │ │ ├── drawable-port-xhdpi-screen.png │ │ │ ├── drawable-port-xxhdpi-screen.png │ │ │ └── drawable-port-xxxhdpi-screen.png │ │ │ ├── ios │ │ │ ├── Default-568h@2x~iphone.png │ │ │ ├── Default-667h.png │ │ │ ├── Default-736h.png │ │ │ ├── Default-Landscape-736h.png │ │ │ ├── Default-Landscape@2x~ipad.png │ │ │ ├── Default-Landscape~ipad.png │ │ │ ├── Default-Portrait@2x~ipad.png │ │ │ ├── Default-Portrait~ipad.png │ │ │ ├── Default@2x~iphone.png │ │ │ └── Default~iphone.png │ │ │ ├── windows │ │ │ ├── SplashScreen.scale-100.png │ │ │ └── SplashScreenPhone.scale-240.png │ │ │ └── wp8 │ │ │ └── screen-portrait.jpg │ │ ├── src │ │ ├── App.vue │ │ ├── components │ │ │ └── Hello.vue │ │ └── main.js │ │ └── test │ │ └── unit │ │ └── Hello.spec.js └── platforms.json ├── plugins ├── android.json ├── browser.json ├── cordova-plugin-battery-status │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── NOTICE │ ├── README.md │ ├── RELEASENOTES.md │ ├── doc │ │ ├── de │ │ │ ├── README.md │ │ │ └── index.md │ │ ├── es │ │ │ ├── README.md │ │ │ └── index.md │ │ ├── fr │ │ │ ├── README.md │ │ │ └── index.md │ │ ├── it │ │ │ ├── README.md │ │ │ └── index.md │ │ ├── ja │ │ │ ├── README.md │ │ │ └── index.md │ │ ├── ko │ │ │ ├── README.md │ │ │ └── index.md │ │ ├── pl │ │ │ ├── README.md │ │ │ └── index.md │ │ ├── ru │ │ │ └── index.md │ │ └── zh │ │ │ ├── README.md │ │ │ └── index.md │ ├── package.json │ ├── plugin.xml │ ├── src │ │ ├── android │ │ │ └── BatteryListener.java │ │ ├── blackberry10 │ │ │ └── index.js │ │ ├── browser │ │ │ └── BatteryProxy.js │ │ ├── firefoxos │ │ │ └── BatteryProxy.js │ │ ├── ios │ │ │ ├── CDVBattery.h │ │ │ └── CDVBattery.m │ │ ├── tizen │ │ │ └── BatteryStatusProxy.js │ │ ├── ubuntu │ │ │ ├── battery.cpp │ │ │ └── battery.h │ │ ├── windows │ │ │ ├── BatteryProxy.js │ │ │ ├── BatteryStatus.winmd │ │ │ └── BatteryStatus │ │ │ │ ├── BatteryStatus.sln │ │ │ │ └── BatteryStatus │ │ │ │ ├── .npmignore │ │ │ │ ├── BatteryStatus.cs │ │ │ │ ├── BatteryStatus.csproj │ │ │ │ └── Properties │ │ │ │ └── AssemblyInfo.cs │ │ └── wp │ │ │ └── Battery.cs │ ├── tests │ │ ├── plugin.xml │ │ └── tests.js │ └── www │ │ └── battery.js ├── cordova-plugin-camera │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── NOTICE │ ├── README.md │ ├── RELEASENOTES.md │ ├── appium-tests │ │ ├── android │ │ │ └── android.spec.js │ │ ├── helpers │ │ │ ├── cameraHelper.js │ │ │ ├── screenshotHelper.js │ │ │ └── wdHelper.js │ │ └── ios │ │ │ └── ios.spec.js │ ├── doc │ │ ├── de │ │ │ ├── README.md │ │ │ └── index.md │ │ ├── es │ │ │ ├── README.md │ │ │ └── index.md │ │ ├── fr │ │ │ ├── README.md │ │ │ └── index.md │ │ ├── img │ │ │ ├── android-fail.png │ │ │ ├── android-success.png │ │ │ ├── blackberry-fail.png │ │ │ ├── blackberry-success.png │ │ │ ├── browser-fail.png │ │ │ ├── browser-success.png │ │ │ ├── firefox-fail.png │ │ │ ├── firefox-success.png │ │ │ ├── fireos-fail.png │ │ │ ├── fireos-success.png │ │ │ ├── ios-fail.png │ │ │ ├── ios-success.png │ │ │ ├── ubuntu-fail.png │ │ │ ├── ubuntu-success.png │ │ │ ├── windows-fail.png │ │ │ ├── windows-success.png │ │ │ ├── wp8-fail.png │ │ │ └── wp8-success.png │ │ ├── it │ │ │ ├── README.md │ │ │ └── index.md │ │ ├── ja │ │ │ ├── README.md │ │ │ └── index.md │ │ ├── ko │ │ │ ├── README.md │ │ │ └── index.md │ │ ├── pl │ │ │ ├── README.md │ │ │ └── index.md │ │ ├── ru │ │ │ └── index.md │ │ └── zh │ │ │ ├── README.md │ │ │ └── index.md │ ├── jsdoc2md │ │ └── TEMPLATE.md │ ├── package.json │ ├── plugin.xml │ ├── src │ │ ├── android │ │ │ ├── CameraLauncher.java │ │ │ ├── ExifHelper.java │ │ │ ├── FileHelper.java │ │ │ └── PermissionHelper.java │ │ ├── blackberry10 │ │ │ └── index.js │ │ ├── browser │ │ │ └── CameraProxy.js │ │ ├── firefoxos │ │ │ └── CameraProxy.js │ │ ├── ios │ │ │ ├── CDVCamera.h │ │ │ ├── CDVCamera.m │ │ │ ├── CDVExif.h │ │ │ ├── CDVJpegHeaderWriter.h │ │ │ ├── CDVJpegHeaderWriter.m │ │ │ ├── UIImage+CropScaleOrientation.h │ │ │ └── UIImage+CropScaleOrientation.m │ │ ├── ubuntu │ │ │ ├── CaptureWidget.qml │ │ │ ├── back.png │ │ │ ├── camera.cpp │ │ │ ├── camera.h │ │ │ ├── shoot.png │ │ │ ├── toolbar-left.png │ │ │ ├── toolbar-middle.png │ │ │ └── toolbar-right.png │ │ ├── windows │ │ │ └── CameraProxy.js │ │ └── wp │ │ │ └── Camera.cs │ ├── tests │ │ ├── ios │ │ │ ├── .npmignore │ │ │ ├── CDVCameraTest.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ ├── CDVCameraTest.xccheckout │ │ │ │ │ └── xcschemes │ │ │ │ │ └── CordovaLib.xcscheme │ │ │ ├── CDVCameraTest │ │ │ │ ├── CDVCameraLibTests │ │ │ │ │ ├── CameraTest.m │ │ │ │ │ └── Info.plist │ │ │ │ └── CDVCameraTest.xcodeproj │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ ├── project.xcworkspace │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ └── CDVCameraTest.xccheckout │ │ │ │ │ └── xcshareddata │ │ │ │ │ └── xcschemes │ │ │ │ │ ├── CDVCameraLib.xcscheme │ │ │ │ │ └── CDVCameraLibTests.xcscheme │ │ │ ├── README.md │ │ │ ├── doc │ │ │ │ ├── de │ │ │ │ │ └── README.md │ │ │ │ ├── es │ │ │ │ │ └── README.md │ │ │ │ ├── fr │ │ │ │ │ └── README.md │ │ │ │ ├── it │ │ │ │ │ └── README.md │ │ │ │ ├── ja │ │ │ │ │ └── README.md │ │ │ │ ├── ko │ │ │ │ │ └── README.md │ │ │ │ ├── pl │ │ │ │ │ └── README.md │ │ │ │ └── zh │ │ │ │ │ └── README.md │ │ │ └── package.json │ │ ├── plugin.xml │ │ └── tests.js │ └── www │ │ ├── Camera.js │ │ ├── CameraConstants.js │ │ ├── CameraPopoverHandle.js │ │ ├── CameraPopoverOptions.js │ │ ├── blackberry10 │ │ └── assets │ │ │ ├── camera.html │ │ │ └── camera.js │ │ └── ios │ │ └── CameraPopoverHandle.js ├── cordova-plugin-compat │ ├── README.md │ ├── package.json │ ├── plugin.xml │ └── src │ │ └── android │ │ └── PermissionHelper.java ├── cordova-plugin-console │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── NOTICE │ ├── README.md │ ├── RELEASENOTES.md │ ├── doc │ │ ├── de │ │ │ ├── README.md │ │ │ └── index.md │ │ ├── es │ │ │ ├── README.md │ │ │ └── index.md │ │ ├── fr │ │ │ ├── README.md │ │ │ └── index.md │ │ ├── it │ │ │ ├── README.md │ │ │ └── index.md │ │ ├── ja │ │ │ ├── README.md │ │ │ └── index.md │ │ ├── ko │ │ │ ├── README.md │ │ │ └── index.md │ │ ├── pl │ │ │ ├── README.md │ │ │ └── index.md │ │ ├── ru │ │ │ └── index.md │ │ └── zh │ │ │ ├── README.md │ │ │ └── index.md │ ├── package.json │ ├── plugin.xml │ ├── src │ │ ├── ios │ │ │ ├── CDVLogger.h │ │ │ └── CDVLogger.m │ │ ├── ubuntu │ │ │ ├── console.cpp │ │ │ └── console.h │ │ └── wp │ │ │ └── DebugConsole.cs │ ├── tests │ │ ├── plugin.xml │ │ └── tests.js │ └── www │ │ ├── console-via-logger.js │ │ └── logger.js ├── cordova-plugin-contacts │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── NOTICE │ ├── README.md │ ├── RELEASENOTES.md │ ├── doc │ │ ├── de │ │ │ ├── README.md │ │ │ └── index.md │ │ ├── es │ │ │ ├── README.md │ │ │ └── index.md │ │ ├── fr │ │ │ ├── README.md │ │ │ └── index.md │ │ ├── it │ │ │ ├── README.md │ │ │ └── index.md │ │ ├── ja │ │ │ ├── README.md │ │ │ └── index.md │ │ ├── ko │ │ │ ├── README.md │ │ │ └── index.md │ │ ├── pl │ │ │ ├── README.md │ │ │ └── index.md │ │ ├── ru │ │ │ └── index.md │ │ └── zh │ │ │ ├── README.md │ │ │ └── index.md │ ├── package.json │ ├── plugin.xml │ ├── src │ │ ├── android │ │ │ ├── ContactAccessor.java │ │ │ ├── ContactAccessorSdk5.java │ │ │ ├── ContactInfoDTO.java │ │ │ ├── ContactManager.java │ │ │ └── PermissionHelper.java │ │ ├── blackberry10 │ │ │ ├── ContactActivity.js │ │ │ ├── ContactAddress.js │ │ │ ├── ContactError.js │ │ │ ├── ContactField.js │ │ │ ├── ContactFindOptions.js │ │ │ ├── ContactName.js │ │ │ ├── ContactNews.js │ │ │ ├── ContactOrganization.js │ │ │ ├── ContactPhoto.js │ │ │ ├── contactConsts.js │ │ │ ├── contactUtils.js │ │ │ └── index.js │ │ ├── firefoxos │ │ │ └── ContactsProxy.js │ │ ├── ios │ │ │ ├── CDVContact.h │ │ │ ├── CDVContact.m │ │ │ ├── CDVContacts.h │ │ │ └── CDVContacts.m │ │ ├── ubuntu │ │ │ ├── contacts.cpp │ │ │ └── contacts.h │ │ ├── windows │ │ │ └── ContactProxy.js │ │ ├── windows8 │ │ │ └── ContactProxy.js │ │ └── wp │ │ │ ├── ContactPicker.xaml │ │ │ ├── ContactPicker.xaml.cs │ │ │ ├── ContactPickerTask.cs │ │ │ ├── Contacts.cs │ │ │ └── ContactsHelper.cs │ ├── tests │ │ ├── plugin.xml │ │ └── tests.js │ └── www │ │ ├── Contact.js │ │ ├── ContactAddress.js │ │ ├── ContactError.js │ │ ├── ContactField.js │ │ ├── ContactFieldType.js │ │ ├── ContactFindOptions.js │ │ ├── ContactName.js │ │ ├── ContactOrganization.js │ │ ├── contacts.js │ │ └── ios │ │ ├── Contact.js │ │ └── contacts.js ├── cordova-plugin-device-motion │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── NOTICE │ ├── README.md │ ├── RELEASENOTES.md │ ├── doc │ │ ├── de │ │ │ ├── README.md │ │ │ └── index.md │ │ ├── es │ │ │ ├── README.md │ │ │ └── index.md │ │ ├── fr │ │ │ ├── README.md │ │ │ └── index.md │ │ ├── it │ │ │ ├── README.md │ │ │ └── index.md │ │ ├── ja │ │ │ ├── README.md │ │ │ └── index.md │ │ ├── ko │ │ │ ├── README.md │ │ │ └── index.md │ │ ├── pl │ │ │ ├── README.md │ │ │ └── index.md │ │ ├── ru │ │ │ └── index.md │ │ └── zh │ │ │ ├── README.md │ │ │ └── index.md │ ├── package.json │ ├── plugin.xml │ ├── src │ │ ├── android │ │ │ └── AccelListener.java │ │ ├── blackberry10 │ │ │ └── index.js │ │ ├── browser │ │ │ └── AccelerometerProxy.js │ │ ├── firefoxos │ │ │ └── accelerometer.js │ │ ├── ios │ │ │ ├── CDVAccelerometer.h │ │ │ └── CDVAccelerometer.m │ │ ├── tizen │ │ │ └── AccelerometerProxy.js │ │ ├── ubuntu │ │ │ ├── accelerometer.cpp │ │ │ └── accelerometer.h │ │ ├── windows │ │ │ └── AccelerometerProxy.js │ │ └── wp │ │ │ └── Accelerometer.cs │ ├── tests │ │ ├── plugin.xml │ │ └── tests.js │ └── www │ │ ├── Acceleration.js │ │ └── accelerometer.js ├── cordova-plugin-device-orientation │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── NOTICE │ ├── README.md │ ├── RELEASENOTES.md │ ├── doc │ │ ├── de │ │ │ ├── README.md │ │ │ └── index.md │ │ ├── es │ │ │ ├── README.md │ │ │ └── index.md │ │ ├── fr │ │ │ ├── README.md │ │ │ └── index.md │ │ ├── it │ │ │ ├── README.md │ │ │ └── index.md │ │ ├── ja │ │ │ ├── README.md │ │ │ └── index.md │ │ ├── ko │ │ │ ├── README.md │ │ │ └── index.md │ │ ├── pl │ │ │ ├── README.md │ │ │ └── index.md │ │ ├── ru │ │ │ └── index.md │ │ └── zh │ │ │ ├── README.md │ │ │ └── index.md │ ├── package.json │ ├── plugin.xml │ ├── src │ │ ├── android │ │ │ └── CompassListener.java │ │ ├── blackberry10 │ │ │ └── index.js │ │ ├── browser │ │ │ └── CompassProxy.js │ │ ├── firefoxos │ │ │ └── compass.js │ │ ├── ios │ │ │ ├── CDVCompass.h │ │ │ └── CDVCompass.m │ │ ├── tizen │ │ │ └── CompassProxy.js │ │ ├── ubuntu │ │ │ ├── compass.cpp │ │ │ └── compass.h │ │ ├── windows │ │ │ └── CompassProxy.js │ │ └── wp │ │ │ └── Compass.cs │ ├── tests │ │ ├── plugin.xml │ │ └── tests.js │ └── www │ │ ├── CompassError.js │ │ ├── CompassHeading.js │ │ └── compass.js ├── cordova-plugin-device │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── NOTICE │ ├── README.md │ ├── RELEASENOTES.md │ ├── doc │ │ ├── de │ │ │ ├── README.md │ │ │ └── index.md │ │ ├── es │ │ │ ├── README.md │ │ │ └── index.md │ │ ├── fr │ │ │ ├── README.md │ │ │ └── index.md │ │ ├── it │ │ │ ├── README.md │ │ │ └── index.md │ │ ├── ja │ │ │ ├── README.md │ │ │ └── index.md │ │ ├── ko │ │ │ ├── README.md │ │ │ └── index.md │ │ ├── pl │ │ │ ├── README.md │ │ │ └── index.md │ │ ├── ru │ │ │ └── index.md │ │ └── zh │ │ │ ├── README.md │ │ │ └── index.md │ ├── package.json │ ├── plugin.xml │ ├── src │ │ ├── android │ │ │ └── Device.java │ │ ├── blackberry10 │ │ │ └── index.js │ │ ├── browser │ │ │ └── DeviceProxy.js │ │ ├── firefoxos │ │ │ └── DeviceProxy.js │ │ ├── ios │ │ │ ├── CDVDevice.h │ │ │ └── CDVDevice.m │ │ ├── osx │ │ │ ├── CDVDevice.h │ │ │ └── CDVDevice.m │ │ ├── tizen │ │ │ └── DeviceProxy.js │ │ ├── ubuntu │ │ │ ├── device.cpp │ │ │ ├── device.h │ │ │ └── device.js │ │ ├── windows │ │ │ └── DeviceProxy.js │ │ └── wp │ │ │ └── Device.cs │ ├── tests │ │ ├── plugin.xml │ │ └── tests.js │ └── www │ │ └── device.js ├── cordova-plugin-dialogs │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── NOTICE │ ├── README.md │ ├── RELEASENOTES.md │ ├── doc │ │ ├── de │ │ │ ├── README.md │ │ │ └── index.md │ │ ├── es │ │ │ ├── README.md │ │ │ └── index.md │ │ ├── fr │ │ │ ├── README.md │ │ │ └── index.md │ │ ├── it │ │ │ ├── README.md │ │ │ └── index.md │ │ ├── ja │ │ │ ├── README.md │ │ │ └── index.md │ │ ├── ko │ │ │ ├── README.md │ │ │ └── index.md │ │ ├── pl │ │ │ ├── README.md │ │ │ └── index.md │ │ ├── ru │ │ │ └── index.md │ │ └── zh │ │ │ ├── README.md │ │ │ └── index.md │ ├── package.json │ ├── plugin.xml │ ├── src │ │ ├── android │ │ │ └── Notification.java │ │ ├── blackberry10 │ │ │ └── index.js │ │ ├── firefoxos │ │ │ └── notification.js │ │ ├── ios │ │ │ ├── CDVNotification.bundle │ │ │ │ └── beep.wav │ │ │ ├── CDVNotification.h │ │ │ └── CDVNotification.m │ │ ├── ubuntu │ │ │ ├── notification.cpp │ │ │ ├── notification.h │ │ │ └── notification.qml │ │ ├── windows │ │ │ └── NotificationProxy.js │ │ └── wp │ │ │ ├── Notification.cs │ │ │ ├── NotificationBox.xaml │ │ │ ├── NotificationBox.xaml.cs │ │ │ └── notification-beep.wav │ ├── tests │ │ ├── plugin.xml │ │ └── tests.js │ └── www │ │ ├── android │ │ └── notification.js │ │ ├── blackberry10 │ │ ├── beep.js │ │ └── notification-beep.wav │ │ ├── browser │ │ └── notification.js │ │ ├── firefoxos │ │ ├── danger-press.png │ │ ├── danger.png │ │ ├── default.png │ │ ├── gradient.png │ │ ├── notification.css │ │ ├── pattern.png │ │ └── recommend.png │ │ └── notification.js ├── cordova-plugin-file-transfer │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── NOTICE │ ├── README.md │ ├── RELEASENOTES.md │ ├── doc │ │ ├── de │ │ │ ├── README.md │ │ │ └── index.md │ │ ├── es │ │ │ ├── README.md │ │ │ └── index.md │ │ ├── fr │ │ │ ├── README.md │ │ │ └── index.md │ │ ├── it │ │ │ ├── README.md │ │ │ └── index.md │ │ ├── ja │ │ │ ├── README.md │ │ │ └── index.md │ │ ├── ko │ │ │ ├── README.md │ │ │ └── index.md │ │ ├── pl │ │ │ ├── README.md │ │ │ └── index.md │ │ ├── ru │ │ │ └── index.md │ │ └── zh │ │ │ ├── README.md │ │ │ └── index.md │ ├── package.json │ ├── plugin.xml │ ├── src │ │ ├── amazon │ │ │ └── FileTransfer.java │ │ ├── android │ │ │ ├── FileProgressResult.java │ │ │ ├── FileTransfer.java │ │ │ └── FileUploadResult.java │ │ ├── ios │ │ │ ├── CDVFileTransfer.h │ │ │ └── CDVFileTransfer.m │ │ ├── ubuntu │ │ │ ├── file-transfer.cpp │ │ │ └── file-transfer.h │ │ ├── windows │ │ │ └── FileTransferProxy.js │ │ └── wp │ │ │ └── FileTransfer.cs │ ├── tests │ │ ├── plugin.xml │ │ └── tests.js │ └── www │ │ ├── FileTransfer.js │ │ ├── FileTransferError.js │ │ ├── blackberry10 │ │ ├── .jshintrc │ │ ├── FileTransfer.js │ │ ├── FileTransferProxy.js │ │ └── xhrFileTransfer.js │ │ ├── browser │ │ └── FileTransfer.js │ │ ├── firefoxos │ │ └── FileTransferProxy.js │ │ └── wp7 │ │ └── base64.js ├── cordova-plugin-file │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── NOTICE │ ├── README.md │ ├── RELEASENOTES.md │ ├── doc │ │ ├── de │ │ │ ├── README.md │ │ │ ├── index.md │ │ │ └── plugins.md │ │ ├── es │ │ │ ├── README.md │ │ │ ├── index.md │ │ │ └── plugins.md │ │ ├── fr │ │ │ ├── README.md │ │ │ ├── index.md │ │ │ └── plugins.md │ │ ├── it │ │ │ ├── README.md │ │ │ ├── index.md │ │ │ └── plugins.md │ │ ├── ja │ │ │ ├── README.md │ │ │ ├── index.md │ │ │ └── plugins.md │ │ ├── ko │ │ │ ├── README.md │ │ │ ├── index.md │ │ │ └── plugins.md │ │ ├── pl │ │ │ ├── README.md │ │ │ ├── index.md │ │ │ └── plugins.md │ │ ├── plugins.md │ │ ├── ru │ │ │ ├── index.md │ │ │ └── plugins.md │ │ └── zh │ │ │ ├── README.md │ │ │ ├── index.md │ │ │ └── plugins.md │ ├── package.json │ ├── plugin.xml │ ├── src │ │ ├── android │ │ │ ├── AssetFilesystem.java │ │ │ ├── ContentFilesystem.java │ │ │ ├── DirectoryManager.java │ │ │ ├── EncodingException.java │ │ │ ├── FileExistsException.java │ │ │ ├── FileUtils.java │ │ │ ├── Filesystem.java │ │ │ ├── InvalidModificationException.java │ │ │ ├── LocalFilesystem.java │ │ │ ├── LocalFilesystemURL.java │ │ │ ├── NoModificationAllowedException.java │ │ │ ├── PendingRequests.java │ │ │ ├── TypeMismatchException.java │ │ │ └── build-extras.gradle │ │ ├── blackberry10 │ │ │ └── index.js │ │ ├── browser │ │ │ └── FileProxy.js │ │ ├── firefoxos │ │ │ └── FileProxy.js │ │ ├── ios │ │ │ ├── CDVAssetLibraryFilesystem.h │ │ │ ├── CDVAssetLibraryFilesystem.m │ │ │ ├── CDVFile.h │ │ │ ├── CDVFile.m │ │ │ ├── CDVLocalFilesystem.h │ │ │ └── CDVLocalFilesystem.m │ │ ├── osx │ │ │ ├── CDVFile.h │ │ │ ├── CDVFile.m │ │ │ ├── CDVLocalFilesystem.h │ │ │ └── CDVLocalFilesystem.m │ │ ├── ubuntu │ │ │ ├── file.cpp │ │ │ └── file.h │ │ ├── windows │ │ │ └── FileProxy.js │ │ └── wp │ │ │ └── File.cs │ ├── tests │ │ ├── plugin.xml │ │ ├── src │ │ │ └── android │ │ │ │ └── TestContentProvider.java │ │ ├── tests.js │ │ └── www │ │ │ └── fixtures │ │ │ └── asset-test │ │ │ └── asset-test.txt │ └── www │ │ ├── DirectoryEntry.js │ │ ├── DirectoryReader.js │ │ ├── Entry.js │ │ ├── File.js │ │ ├── FileEntry.js │ │ ├── FileError.js │ │ ├── FileReader.js │ │ ├── FileSystem.js │ │ ├── FileUploadOptions.js │ │ ├── FileUploadResult.js │ │ ├── FileWriter.js │ │ ├── Flags.js │ │ ├── LocalFileSystem.js │ │ ├── Metadata.js │ │ ├── ProgressEvent.js │ │ ├── android │ │ └── FileSystem.js │ │ ├── blackberry10 │ │ ├── .jshintrc │ │ ├── FileProxy.js │ │ ├── FileSystem.js │ │ ├── copyTo.js │ │ ├── createEntryFromNative.js │ │ ├── getDirectory.js │ │ ├── getFile.js │ │ ├── getFileMetadata.js │ │ ├── getMetadata.js │ │ ├── getParent.js │ │ ├── info.js │ │ ├── moveTo.js │ │ ├── readAsArrayBuffer.js │ │ ├── readAsBinaryString.js │ │ ├── readAsDataURL.js │ │ ├── readAsText.js │ │ ├── readEntries.js │ │ ├── remove.js │ │ ├── removeRecursively.js │ │ ├── requestAllFileSystems.js │ │ ├── requestAnimationFrame.js │ │ ├── requestFileSystem.js │ │ ├── resolveLocalFileSystemURI.js │ │ ├── setMetadata.js │ │ ├── truncate.js │ │ └── write.js │ │ ├── browser │ │ ├── FileSystem.js │ │ ├── Preparing.js │ │ └── isChrome.js │ │ ├── fileSystemPaths.js │ │ ├── fileSystems-roots.js │ │ ├── fileSystems.js │ │ ├── firefoxos │ │ └── FileSystem.js │ │ ├── ios │ │ └── FileSystem.js │ │ ├── osx │ │ └── FileSystem.js │ │ ├── requestFileSystem.js │ │ ├── resolveLocalFileSystemURI.js │ │ ├── ubuntu │ │ ├── FileSystem.js │ │ ├── FileWriter.js │ │ └── fileSystems-roots.js │ │ └── wp │ │ └── FileUploadOptions.js ├── cordova-plugin-geolocation │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── NOTICE │ ├── README.md │ ├── RELEASENOTES.md │ ├── doc │ │ ├── de │ │ │ ├── README.md │ │ │ └── index.md │ │ ├── es │ │ │ ├── README.md │ │ │ └── index.md │ │ ├── fr │ │ │ ├── README.md │ │ │ └── index.md │ │ ├── it │ │ │ ├── README.md │ │ │ └── index.md │ │ ├── ja │ │ │ ├── README.md │ │ │ └── index.md │ │ ├── ko │ │ │ ├── README.md │ │ │ └── index.md │ │ ├── pl │ │ │ ├── README.md │ │ │ └── index.md │ │ ├── ru │ │ │ └── index.md │ │ └── zh │ │ │ ├── README.md │ │ │ └── index.md │ ├── package.json │ ├── plugin.xml │ ├── src │ │ ├── android │ │ │ ├── Geolocation.java │ │ │ └── PermissionHelper.java │ │ ├── firefoxos │ │ │ └── GeolocationProxy.js │ │ ├── ios │ │ │ ├── CDVLocation.h │ │ │ └── CDVLocation.m │ │ ├── ubuntu │ │ │ ├── geolocation.cpp │ │ │ └── geolocation.h │ │ ├── windows │ │ │ └── GeolocationProxy.js │ │ └── wp │ │ │ └── GeoLocation.cs │ ├── tests │ │ ├── plugin.xml │ │ └── tests.js │ └── www │ │ ├── Coordinates.js │ │ ├── Position.js │ │ ├── PositionError.js │ │ ├── android │ │ └── geolocation.js │ │ ├── blackberry10 │ │ └── GeolocationProxy.js │ │ └── geolocation.js ├── cordova-plugin-globalization │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── NOTICE │ ├── README.md │ ├── RELEASENOTES.md │ ├── doc │ │ ├── de │ │ │ ├── README.md │ │ │ └── index.md │ │ ├── es │ │ │ ├── README.md │ │ │ └── index.md │ │ ├── fr │ │ │ ├── README.md │ │ │ └── index.md │ │ ├── it │ │ │ ├── README.md │ │ │ └── index.md │ │ ├── ja │ │ │ ├── README.md │ │ │ └── index.md │ │ ├── ko │ │ │ ├── README.md │ │ │ └── index.md │ │ ├── pl │ │ │ ├── README.md │ │ │ └── index.md │ │ ├── ru │ │ │ └── index.md │ │ └── zh │ │ │ ├── README.md │ │ │ └── index.md │ ├── package.json │ ├── plugin.xml │ ├── src │ │ ├── android │ │ │ ├── Globalization.java │ │ │ └── GlobalizationError.java │ │ ├── blackberry10 │ │ │ ├── index.js │ │ │ └── native │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ ├── device │ │ │ │ └── libGlobalization.so │ │ │ │ ├── public │ │ │ │ ├── json │ │ │ │ │ ├── autolink.h │ │ │ │ │ ├── config.h │ │ │ │ │ ├── features.h │ │ │ │ │ ├── forwards.h │ │ │ │ │ ├── json.h │ │ │ │ │ ├── reader.h │ │ │ │ │ ├── value.h │ │ │ │ │ └── writer.h │ │ │ │ ├── json_batchallocator.h │ │ │ │ ├── json_internalarray.inl │ │ │ │ ├── json_internalmap.inl │ │ │ │ ├── json_reader.cpp │ │ │ │ ├── json_value.cpp │ │ │ │ ├── json_valueiterator.inl │ │ │ │ ├── json_writer.cpp │ │ │ │ ├── plugin.cpp │ │ │ │ ├── plugin.h │ │ │ │ ├── tokenizer.cpp │ │ │ │ └── tokenizer.h │ │ │ │ ├── simulator │ │ │ │ └── libGlobalization.so │ │ │ │ └── src │ │ │ │ ├── globalization_js.cpp │ │ │ │ ├── globalization_js.hpp │ │ │ │ ├── globalization_ndk.cpp │ │ │ │ └── globalization_ndk.hpp │ │ ├── browser │ │ │ └── GlobalizationProxy.js │ │ ├── firefoxos │ │ │ └── GlobalizationProxy.js │ │ ├── ios │ │ │ ├── CDVGlobalization.h │ │ │ └── CDVGlobalization.m │ │ ├── tizen │ │ │ └── GlobalizationProxy.js │ │ ├── ubuntu │ │ │ ├── globalization.cpp │ │ │ └── globalization.h │ │ ├── windows │ │ │ ├── GlobalizationProxy.js │ │ │ ├── GlobalizationProxy.winmd │ │ │ └── GlobalizationProxy │ │ │ │ ├── GlobalizationProxy.sln │ │ │ │ └── GlobalizationProxy │ │ │ │ ├── .npmignore │ │ │ │ ├── Cordova │ │ │ │ └── JSON │ │ │ │ │ └── JsonHelper.cs │ │ │ │ ├── Globalization │ │ │ │ ├── GlobalizationApiTypes.cs │ │ │ │ ├── GlobalizationImpl.cs │ │ │ │ └── SettableCultureInfo.cs │ │ │ │ ├── GlobalizationProxy.cs │ │ │ │ ├── GlobalizationProxy.csproj │ │ │ │ └── Properties │ │ │ │ └── AssemblyInfo.cs │ │ └── wp │ │ │ └── Globalization.cs │ ├── tests │ │ ├── plugin.xml │ │ └── tests.js │ └── www │ │ ├── GlobalizationError.js │ │ ├── browser │ │ └── moment.js │ │ ├── firefoxos │ │ ├── l10n.js │ │ ├── l10n_date.js │ │ └── locales │ │ │ ├── date.ar.properties │ │ │ ├── date.as.properties │ │ │ ├── date.ast.properties │ │ │ ├── date.bg.properties │ │ │ ├── date.bn-BD.properties │ │ │ ├── date.bn-IN.properties │ │ │ ├── date.ca.properties │ │ │ ├── date.cs.properties │ │ │ ├── date.cy.properties │ │ │ ├── date.da.properties │ │ │ ├── date.de.properties │ │ │ ├── date.el.properties │ │ │ ├── date.en-GB.properties │ │ │ ├── date.en-US.properties │ │ │ ├── date.eo.properties │ │ │ ├── date.es.properties │ │ │ ├── date.et.properties │ │ │ ├── date.eu.properties │ │ │ ├── date.ff.properties │ │ │ ├── date.fr.properties │ │ │ ├── date.fy-NL.properties │ │ │ ├── date.ga-IE.properties │ │ │ ├── date.gd.properties │ │ │ ├── date.gl.properties │ │ │ ├── date.gu.properties │ │ │ ├── date.he.properties │ │ │ ├── date.hi-IN.properties │ │ │ ├── date.hr.properties │ │ │ ├── date.hu.properties │ │ │ ├── date.id.properties │ │ │ ├── date.ini │ │ │ ├── date.it.properties │ │ │ ├── date.ja.properties │ │ │ ├── date.km.properties │ │ │ ├── date.kn.properties │ │ │ ├── date.ko.properties │ │ │ ├── date.lij.properties │ │ │ ├── date.lt.properties │ │ │ ├── date.mai.properties │ │ │ ├── date.mk.properties │ │ │ ├── date.ml.properties │ │ │ ├── date.mr.properties │ │ │ ├── date.ms.properties │ │ │ ├── date.nb-NO.properties │ │ │ ├── date.ne-NP.properties │ │ │ ├── date.nl.properties │ │ │ ├── date.or.properties │ │ │ ├── date.pa.properties │ │ │ ├── date.pl.properties │ │ │ ├── date.pt-BR.properties │ │ │ ├── date.ro.properties │ │ │ ├── date.ru.properties │ │ │ ├── date.si.properties │ │ │ ├── date.sk.properties │ │ │ ├── date.sl.properties │ │ │ ├── date.son.properties │ │ │ ├── date.sq.properties │ │ │ ├── date.sr-Cyrl.properties │ │ │ ├── date.sr-Latn.properties │ │ │ ├── date.sv-SE.properties │ │ │ ├── date.sw.properties │ │ │ ├── date.ta.properties │ │ │ ├── date.te.properties │ │ │ ├── date.th.properties │ │ │ ├── date.tr.properties │ │ │ ├── date.ur.properties │ │ │ ├── date.vi.properties │ │ │ ├── date.xh.properties │ │ │ ├── date.zh-CN.properties │ │ │ └── date.zh-TW.properties │ │ ├── globalization.js │ │ └── ubuntu │ │ └── globalization.js ├── cordova-plugin-inappbrowser │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── NOTICE │ ├── README.md │ ├── RELEASENOTES.md │ ├── doc │ │ ├── de │ │ │ ├── README.md │ │ │ └── index.md │ │ ├── es │ │ │ ├── README.md │ │ │ └── index.md │ │ ├── fr │ │ │ ├── README.md │ │ │ └── index.md │ │ ├── it │ │ │ ├── README.md │ │ │ └── index.md │ │ ├── ja │ │ │ ├── README.md │ │ │ └── index.md │ │ ├── ko │ │ │ ├── README.md │ │ │ └── index.md │ │ ├── pl │ │ │ ├── README.md │ │ │ └── index.md │ │ ├── ru │ │ │ └── index.md │ │ └── zh │ │ │ ├── README.md │ │ │ └── index.md │ ├── package.json │ ├── plugin.xml │ ├── src │ │ ├── amazon │ │ │ ├── InAppBrowser.java │ │ │ └── InAppChromeClient.java │ │ ├── android │ │ │ ├── InAppBrowser.java │ │ │ ├── InAppBrowserDialog.java │ │ │ ├── InAppChromeClient.java │ │ │ └── res │ │ │ │ ├── drawable-hdpi │ │ │ │ ├── ic_action_next_item.png │ │ │ │ ├── ic_action_previous_item.png │ │ │ │ └── ic_action_remove.png │ │ │ │ ├── drawable-mdpi │ │ │ │ ├── ic_action_next_item.png │ │ │ │ ├── ic_action_previous_item.png │ │ │ │ └── ic_action_remove.png │ │ │ │ ├── drawable-xhdpi │ │ │ │ ├── ic_action_next_item.png │ │ │ │ ├── ic_action_previous_item.png │ │ │ │ └── ic_action_remove.png │ │ │ │ └── drawable-xxhdpi │ │ │ │ ├── ic_action_next_item.png │ │ │ │ ├── ic_action_previous_item.png │ │ │ │ └── ic_action_remove.png │ │ ├── blackberry10 │ │ │ ├── README.md │ │ │ └── doc │ │ │ │ ├── de │ │ │ │ └── README.md │ │ │ │ ├── es │ │ │ │ └── README.md │ │ │ │ ├── fr │ │ │ │ └── README.md │ │ │ │ ├── it │ │ │ │ └── README.md │ │ │ │ ├── ja │ │ │ │ └── README.md │ │ │ │ ├── ko │ │ │ │ └── README.md │ │ │ │ ├── pl │ │ │ │ └── README.md │ │ │ │ └── zh │ │ │ │ └── README.md │ │ ├── browser │ │ │ └── InAppBrowserProxy.js │ │ ├── firefoxos │ │ │ └── InAppBrowserProxy.js │ │ ├── ios │ │ │ ├── CDVInAppBrowser.h │ │ │ └── CDVInAppBrowser.m │ │ ├── ubuntu │ │ │ ├── InAppBrowser.qml │ │ │ ├── InAppBrowser_escapeScript.js │ │ │ ├── close.png │ │ │ ├── inappbrowser.cpp │ │ │ └── inappbrowser.h │ │ ├── windows │ │ │ └── InAppBrowserProxy.js │ │ └── wp │ │ │ └── InAppBrowser.cs │ ├── tests │ │ ├── plugin.xml │ │ ├── resources │ │ │ ├── inject.css │ │ │ ├── inject.html │ │ │ ├── inject.js │ │ │ ├── local.html │ │ │ ├── local.pdf │ │ │ └── video.html │ │ └── tests.js │ └── www │ │ ├── inappbrowser.css │ │ ├── inappbrowser.js │ │ └── windows8 │ │ └── InAppBrowserProxy.js ├── cordova-plugin-media-capture │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── NOTICE │ ├── README.md │ ├── RELEASENOTES.md │ ├── doc │ │ ├── de │ │ │ ├── README.md │ │ │ └── index.md │ │ ├── es │ │ │ ├── README.md │ │ │ └── index.md │ │ ├── fr │ │ │ ├── README.md │ │ │ └── index.md │ │ ├── it │ │ │ ├── README.md │ │ │ └── index.md │ │ ├── ja │ │ │ ├── README.md │ │ │ └── index.md │ │ ├── ko │ │ │ ├── README.md │ │ │ └── index.md │ │ ├── pl │ │ │ ├── README.md │ │ │ └── index.md │ │ ├── ru │ │ │ └── index.md │ │ └── zh │ │ │ ├── README.md │ │ │ └── index.md │ ├── package.json │ ├── plugin.xml │ ├── src │ │ ├── android │ │ │ ├── Capture.java │ │ │ └── FileHelper.java │ │ ├── blackberry10 │ │ │ └── index.js │ │ ├── browser │ │ │ └── CaptureProxy.js │ │ ├── ios │ │ │ ├── CDVCapture.bundle │ │ │ │ ├── controls_bg.png │ │ │ │ ├── controls_bg@2x.png │ │ │ │ ├── controls_bg@2x~ipad.png │ │ │ │ ├── controls_bg~ipad.png │ │ │ │ ├── de.lproj │ │ │ │ │ └── Localizable.strings │ │ │ │ ├── en.lproj │ │ │ │ │ └── Localizable.strings │ │ │ │ ├── es.lproj │ │ │ │ │ └── Localizable.strings │ │ │ │ ├── microphone-568h@2x~iphone.png │ │ │ │ ├── microphone.png │ │ │ │ ├── microphone@2x.png │ │ │ │ ├── microphone@2x~ipad.png │ │ │ │ ├── microphone~ipad.png │ │ │ │ ├── record_button.png │ │ │ │ ├── record_button@2x.png │ │ │ │ ├── record_button@2x~ipad.png │ │ │ │ ├── record_button~ipad.png │ │ │ │ ├── recording_bg.png │ │ │ │ ├── recording_bg@2x.png │ │ │ │ ├── recording_bg@2x~ipad.png │ │ │ │ ├── recording_bg~ipad.png │ │ │ │ ├── se.lproj │ │ │ │ │ └── Localizable.strings │ │ │ │ ├── stop_button.png │ │ │ │ ├── stop_button@2x.png │ │ │ │ ├── stop_button@2x~ipad.png │ │ │ │ └── stop_button~ipad.png │ │ │ ├── CDVCapture.h │ │ │ └── CDVCapture.m │ │ ├── ubuntu │ │ │ ├── MediaCaptureWidget.qml │ │ │ ├── back.png │ │ │ ├── capture.cpp │ │ │ ├── capture.h │ │ │ ├── microphone.png │ │ │ ├── record_off.png │ │ │ ├── record_on.png │ │ │ ├── shoot.png │ │ │ ├── toolbar-left.png │ │ │ ├── toolbar-middle.png │ │ │ └── toolbar-right.png │ │ ├── windows │ │ │ ├── CaptureProxy.js │ │ │ └── MediaFile.js │ │ └── wp │ │ │ ├── Capture.cs │ │ │ └── UI │ │ │ ├── AudioCaptureTask.cs │ │ │ ├── AudioRecorder.xaml │ │ │ ├── AudioRecorder.xaml.cs │ │ │ ├── VideoCaptureTask.cs │ │ │ ├── VideoRecorder.xaml │ │ │ └── VideoRecorder.xaml.cs │ ├── tests │ │ ├── plugin.xml │ │ └── tests.js │ └── www │ │ ├── CaptureAudioOptions.js │ │ ├── CaptureError.js │ │ ├── CaptureImageOptions.js │ │ ├── CaptureVideoOptions.js │ │ ├── ConfigurationData.js │ │ ├── MediaFile.js │ │ ├── MediaFileData.js │ │ └── capture.js ├── cordova-plugin-media │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── NOTICE │ ├── README.md │ ├── RELEASENOTES.md │ ├── doc │ │ ├── de │ │ │ ├── README.md │ │ │ └── index.md │ │ ├── es │ │ │ ├── README.md │ │ │ └── index.md │ │ ├── fr │ │ │ ├── README.md │ │ │ └── index.md │ │ ├── it │ │ │ ├── README.md │ │ │ └── index.md │ │ ├── ja │ │ │ ├── README.md │ │ │ └── index.md │ │ ├── ko │ │ │ ├── README.md │ │ │ └── index.md │ │ ├── pl │ │ │ ├── README.md │ │ │ └── index.md │ │ ├── ru │ │ │ └── index.md │ │ └── zh │ │ │ ├── README.md │ │ │ └── index.md │ ├── package.json │ ├── plugin.xml │ ├── src │ │ ├── android │ │ │ ├── AudioHandler.java │ │ │ ├── AudioPlayer.java │ │ │ ├── FileHelper.java │ │ │ └── PermissionHelper.java │ │ ├── blackberry10 │ │ │ └── index.js │ │ ├── ios │ │ │ ├── CDVSound.h │ │ │ └── CDVSound.m │ │ ├── tizen │ │ │ └── MediaProxy.js │ │ ├── ubuntu │ │ │ ├── media.cpp │ │ │ └── media.h │ │ ├── windows │ │ │ └── MediaProxy.js │ │ └── wp │ │ │ ├── AudioPlayer.cs │ │ │ └── Media.cs │ ├── tests │ │ ├── plugin.xml │ │ └── tests.js │ └── www │ │ ├── Media.js │ │ ├── MediaError.js │ │ └── browser │ │ └── Media.js ├── cordova-plugin-network-information │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── NOTICE │ ├── README.md │ ├── RELEASENOTES.md │ ├── doc │ │ ├── de │ │ │ ├── README.md │ │ │ └── index.md │ │ ├── es │ │ │ ├── README.md │ │ │ └── index.md │ │ ├── fr │ │ │ ├── README.md │ │ │ └── index.md │ │ ├── it │ │ │ ├── README.md │ │ │ └── index.md │ │ ├── ja │ │ │ ├── README.md │ │ │ └── index.md │ │ ├── ko │ │ │ ├── README.md │ │ │ └── index.md │ │ ├── pl │ │ │ ├── README.md │ │ │ └── index.md │ │ ├── ru │ │ │ └── index.md │ │ └── zh │ │ │ ├── README.md │ │ │ └── index.md │ ├── package.json │ ├── plugin.xml │ ├── src │ │ ├── android │ │ │ └── NetworkManager.java │ │ ├── blackberry10 │ │ │ └── index.js │ │ ├── browser │ │ │ └── network.js │ │ ├── firefoxos │ │ │ └── NetworkProxy.js │ │ ├── ios │ │ │ ├── CDVConnection.h │ │ │ ├── CDVConnection.m │ │ │ ├── CDVReachability.h │ │ │ └── CDVReachability.m │ │ ├── tizen │ │ │ └── NetworkProxy.js │ │ ├── ubuntu │ │ │ ├── network_information.cpp │ │ │ └── network_information.h │ │ ├── windows │ │ │ └── NetworkInfoProxy.js │ │ └── wp │ │ │ └── NetworkStatus.cs │ ├── tests │ │ ├── plugin.xml │ │ └── tests.js │ └── www │ │ ├── Connection.js │ │ └── network.js ├── cordova-plugin-splashscreen │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── NOTICE │ ├── README.md │ ├── RELEASENOTES.md │ ├── doc │ │ ├── de │ │ │ ├── README.md │ │ │ └── index.md │ │ ├── es │ │ │ ├── README.md │ │ │ └── index.md │ │ ├── fr │ │ │ ├── README.md │ │ │ └── index.md │ │ ├── it │ │ │ ├── README.md │ │ │ └── index.md │ │ ├── ja │ │ │ ├── README.md │ │ │ └── index.md │ │ ├── ko │ │ │ ├── README.md │ │ │ └── index.md │ │ ├── pl │ │ │ ├── README.md │ │ │ └── index.md │ │ ├── ru │ │ │ └── index.md │ │ └── zh │ │ │ ├── README.md │ │ │ └── index.md │ ├── package.json │ ├── plugin.xml │ ├── src │ │ ├── android │ │ │ └── SplashScreen.java │ │ ├── blackberry10 │ │ │ └── index.js │ │ ├── browser │ │ │ └── SplashScreenProxy.js │ │ ├── ios │ │ │ ├── CDVSplashScreen.h │ │ │ ├── CDVSplashScreen.m │ │ │ ├── CDVViewController+SplashScreen.h │ │ │ └── CDVViewController+SplashScreen.m │ │ ├── tizen │ │ │ └── SplashScreenProxy.js │ │ ├── ubuntu │ │ │ ├── splashscreen.cpp │ │ │ └── splashscreen.h │ │ └── wp │ │ │ ├── ResolutionHelper.cs │ │ │ └── SplashScreen.cs │ ├── tests │ │ ├── ios │ │ │ ├── CDVSplashScreenTest.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ ├── CDVSplashScreenTest.xccheckout │ │ │ │ │ └── xcschemes │ │ │ │ │ └── CordovaLib.xcscheme │ │ │ ├── CDVSplashScreenTest │ │ │ │ ├── .npmignore │ │ │ │ ├── CDVSplashScreenLibTests │ │ │ │ │ ├── ImageNameTest.m │ │ │ │ │ ├── ImageNameTestDelegates.h │ │ │ │ │ ├── ImageNameTestDelegates.m │ │ │ │ │ └── Info.plist │ │ │ │ └── CDVSplashScreenTest.xcodeproj │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ ├── project.xcworkspace │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ └── CDVSplashScreenTest.xccheckout │ │ │ │ │ └── xcshareddata │ │ │ │ │ └── xcschemes │ │ │ │ │ ├── CDVSplashScreenLib.xcscheme │ │ │ │ │ └── CDVSplashScreenLibTests.xcscheme │ │ │ ├── README.md │ │ │ ├── doc │ │ │ │ ├── de │ │ │ │ │ └── README.md │ │ │ │ ├── es │ │ │ │ │ └── README.md │ │ │ │ ├── fr │ │ │ │ │ └── README.md │ │ │ │ ├── it │ │ │ │ │ └── README.md │ │ │ │ ├── ja │ │ │ │ │ └── README.md │ │ │ │ ├── ko │ │ │ │ │ └── README.md │ │ │ │ ├── pl │ │ │ │ │ └── README.md │ │ │ │ └── zh │ │ │ │ │ └── README.md │ │ │ └── package.json │ │ ├── plugin.xml │ │ └── tests.js │ └── www │ │ ├── splashscreen.js │ │ └── windows │ │ └── SplashScreenProxy.js ├── cordova-plugin-statusbar │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── NOTICE │ ├── README.md │ ├── RELEASENOTES.md │ ├── doc │ │ ├── de │ │ │ ├── README.md │ │ │ └── index.md │ │ ├── es │ │ │ ├── README.md │ │ │ └── index.md │ │ ├── fr │ │ │ ├── README.md │ │ │ └── index.md │ │ ├── it │ │ │ ├── README.md │ │ │ └── index.md │ │ ├── ja │ │ │ ├── README.md │ │ │ └── index.md │ │ ├── ko │ │ │ ├── README.md │ │ │ └── index.md │ │ ├── pl │ │ │ ├── README.md │ │ │ └── index.md │ │ ├── ru │ │ │ └── index.md │ │ └── zh │ │ │ ├── README.md │ │ │ └── index.md │ ├── package.json │ ├── plugin.xml │ ├── src │ │ ├── android │ │ │ └── StatusBar.java │ │ ├── browser │ │ │ └── statusbar.js │ │ ├── ios │ │ │ ├── CDVStatusBar.h │ │ │ └── CDVStatusBar.m │ │ ├── windows │ │ │ └── StatusBarProxy.js │ │ └── wp │ │ │ └── StatusBar.cs │ ├── tests │ │ ├── plugin.xml │ │ └── tests.js │ └── www │ │ └── statusbar.js ├── cordova-plugin-vibration │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── NOTICE │ ├── README.md │ ├── RELEASENOTES.md │ ├── doc │ │ ├── de │ │ │ ├── README.md │ │ │ └── index.md │ │ ├── es │ │ │ ├── README.md │ │ │ └── index.md │ │ ├── fr │ │ │ ├── README.md │ │ │ └── index.md │ │ ├── it │ │ │ ├── README.md │ │ │ └── index.md │ │ ├── ja │ │ │ ├── README.md │ │ │ └── index.md │ │ ├── ko │ │ │ ├── README.md │ │ │ └── index.md │ │ ├── pl │ │ │ ├── README.md │ │ │ └── index.md │ │ ├── ru │ │ │ └── index.md │ │ └── zh │ │ │ ├── README.md │ │ │ └── index.md │ ├── package.json │ ├── plugin.xml │ ├── src │ │ ├── android │ │ │ └── Vibration.java │ │ ├── blackberry10 │ │ │ ├── index.js │ │ │ └── native │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ ├── device │ │ │ │ └── libVibration.so │ │ │ │ ├── public │ │ │ │ ├── plugin.cpp │ │ │ │ ├── plugin.h │ │ │ │ ├── tokenizer.cpp │ │ │ │ └── tokenizer.h │ │ │ │ ├── simulator │ │ │ │ └── libVibration.so │ │ │ │ └── src │ │ │ │ ├── vibration_js.cpp │ │ │ │ └── vibration_js.hpp │ │ ├── browser │ │ │ └── Vibration.js │ │ ├── firefoxos │ │ │ └── VibrationProxy.js │ │ ├── ios │ │ │ ├── CDVVibration.h │ │ │ └── CDVVibration.m │ │ ├── tizen │ │ │ └── VibrationProxy.js │ │ ├── ubuntu │ │ │ ├── vibration.cpp │ │ │ └── vibration.h │ │ ├── windows │ │ │ ├── Vibration │ │ │ │ ├── .npmignore │ │ │ │ ├── Properties │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ ├── Vibration.cs │ │ │ │ └── Vibration.csproj │ │ │ └── VibrationProxy.js │ │ └── wp │ │ │ └── Vibration.cs │ ├── tests │ │ ├── plugin.xml │ │ └── tests.js │ └── www │ │ ├── blackberry10 │ │ └── vibrate.js │ │ └── vibration.js ├── cordova-plugin-whitelist │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── NOTICE │ ├── README.md │ ├── RELEASENOTES.md │ ├── doc │ │ ├── de │ │ │ └── README.md │ │ ├── es │ │ │ └── README.md │ │ ├── fr │ │ │ └── README.md │ │ ├── it │ │ │ └── README.md │ │ ├── ja │ │ │ └── README.md │ │ ├── ko │ │ │ └── README.md │ │ ├── pl │ │ │ └── README.md │ │ └── zh │ │ │ └── README.md │ ├── package.json │ ├── plugin.xml │ └── src │ │ └── android │ │ └── WhitelistPlugin.java ├── fetch.json └── ios.json └── www ├── dist └── build.js ├── images ├── logo_phonegap.png └── logo_vue.png ├── index.html ├── res ├── .pgbomit ├── icon │ ├── android │ │ ├── drawable-hdpi-icon.png │ │ ├── drawable-ldpi-icon.png │ │ ├── drawable-mdpi-icon.png │ │ ├── drawable-xhdpi-icon.png │ │ ├── drawable-xxhdpi-icon.png │ │ └── drawable-xxxhdpi-icon.png │ ├── ios │ │ ├── icon-40.png │ │ ├── icon-40@2x.png │ │ ├── icon-50.png │ │ ├── icon-50@2x.png │ │ ├── icon-60.png │ │ ├── icon-60@2x.png │ │ ├── icon-60@3x.png │ │ ├── icon-72.png │ │ ├── icon-72@2x.png │ │ ├── icon-76.png │ │ ├── icon-76@2x.png │ │ ├── icon-small.png │ │ ├── icon-small@2x.png │ │ ├── icon-small@3x.png │ │ ├── icon.png │ │ └── icon@2x.png │ ├── windows │ │ ├── Square150x150Logo.scale-100.png │ │ ├── Square150x150Logo.scale-240.png │ │ ├── Square30x30Logo.scale-100.png │ │ ├── Square310x310Logo.scale-100.png │ │ ├── Square44x44Logo.scale-100.png │ │ ├── Square44x44Logo.scale-240.png │ │ ├── Square70x70Logo.scale-100.png │ │ ├── Square71x71Logo.scale-100.png │ │ ├── Square71x71Logo.scale-240.png │ │ ├── StoreLogo.scale-100.png │ │ ├── StoreLogo.scale-240.png │ │ ├── Wide310x150Logo.scale-100.png │ │ └── Wide310x150Logo.scale-240.png │ └── wp8 │ │ ├── ApplicationIcon.png │ │ └── Background.png └── screen │ ├── android │ ├── drawable-land-hdpi-screen.png │ ├── drawable-land-ldpi-screen.png │ ├── drawable-land-mdpi-screen.png │ ├── drawable-land-xhdpi-screen.png │ ├── drawable-land-xxhdpi-screen.png │ ├── drawable-land-xxxhdpi-screen.png │ ├── drawable-port-hdpi-screen.png │ ├── drawable-port-ldpi-screen.png │ ├── drawable-port-mdpi-screen.png │ ├── drawable-port-xhdpi-screen.png │ ├── drawable-port-xxhdpi-screen.png │ └── drawable-port-xxxhdpi-screen.png │ ├── ios │ ├── Default-568h@2x~iphone.png │ ├── Default-667h.png │ ├── Default-736h.png │ ├── Default-Landscape-736h.png │ ├── Default-Landscape@2x~ipad.png │ ├── Default-Landscape~ipad.png │ ├── Default-Portrait@2x~ipad.png │ ├── Default-Portrait~ipad.png │ ├── Default@2x~iphone.png │ └── Default~iphone.png │ ├── windows │ ├── SplashScreen.scale-100.png │ └── SplashScreenPhone.scale-240.png │ └── wp8 │ └── screen-portrait.jpg ├── src ├── App.vue ├── components │ └── Hello.vue └── main.js └── test └── unit └── Hello.spec.js /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["es2015", "stage-2"], 3 | "plugins": ["transform-runtime"] 4 | } 5 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | npm-debug.log -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | # Mac 2 | .DS_Store 3 | node_modules 4 | npm-debug.log -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | ## Contributing 2 | 3 | Thank you for your interest in contributing to the PhoneGap Vueify. 4 | 5 | #### Issues 6 | 7 | One of the best contributions is filing issues in the [Issue Tracker][issue-tracker]. 8 | 9 | All contributions (feature or bug fix) should start with an issue first. 10 | 11 | #### Pull requests 12 | 13 | - Fork the repository 14 | - Create a branch (`git checkout -b issue-nnn`) 15 | - If possible, add a failing test 16 | - Commit your fix/feature and tests (`git commit -am "fixes for issue #nnn"`) 17 | - Push to the branch (`git push -u origin issue-nnn`) 18 | - Open a [Pull Request][pull-request] 19 | 20 | 21 | [issue-tracker]: https://github.com/leMaur/phonegap-vueify/issues 22 | [pull-request]: https://github.com/leMaur/phonegap-vueify/pulls 23 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2016 Maurizio Lepora 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /hooks/README.md: -------------------------------------------------------------------------------- 1 | 21 | # Cordova Hooks 22 | 23 | Cordova Hooks represent special scripts which could be added by application and plugin developers or even by your own build system to customize cordova commands. See Hooks Guide for more details: http://cordova.apache.org/docs/en/edge/guide_appdev_hooks_index.md.html#Hooks%20Guide. 24 | -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/icon.png -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- 1 | // https://github.com/Nikku/karma-browserify 2 | module.exports = function (config) { 3 | config.set({ 4 | browsers: ['PhantomJS'], 5 | frameworks: ['browserify', 'jasmine'], 6 | files: ['www/test/unit/**/*.js'], 7 | reporters: ['spec'], 8 | preprocessors: { 9 | 'www/test/unit/**/*.js': ['browserify'] 10 | }, 11 | browserify: { 12 | debug: true, 13 | // needed to enable mocks 14 | plugin: [require('proxyquireify').plugin] 15 | }, 16 | // if you want to continuously re-run tests on file-save, 17 | // replace the following line with `autoWatch: true` 18 | singleRun: true 19 | }) 20 | } 21 | -------------------------------------------------------------------------------- /platforms/browser/cordova/build: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | /* 4 | Licensed to the Apache Software Foundation (ASF) under one 5 | or more contributor license agreements. See the NOTICE file 6 | distributed with this work for additional information 7 | regarding copyright ownership. The ASF licenses this file 8 | to you under the Apache License, Version 2.0 (the 9 | "License"); you may not use this file except in compliance 10 | with the License. You may obtain a copy of the License at 11 | 12 | http://www.apache.org/licenses/LICENSE-2.0 13 | 14 | Unless required by applicable law or agreed to in writing, 15 | software distributed under the License is distributed on an 16 | "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 17 | KIND, either express or implied. See the License for the 18 | specific language governing permissions and limitations 19 | under the License. 20 | */ 21 | 22 | 23 | var build = require('./lib/build'), 24 | args = process.argv; 25 | 26 | // provide help 27 | if ( args[2] == '--help' || args[2] == '/?' || args[2] == '-h' || args[2] == '/h' || 28 | args[2] == 'help' || args[2] == '-help' || args[2] == '/help') { 29 | build.help(); 30 | process.exit(0); 31 | } else { 32 | 33 | build.run(); 34 | } 35 | -------------------------------------------------------------------------------- /platforms/browser/cordova/build.bat: -------------------------------------------------------------------------------- 1 | :: Licensed to the Apache Software Foundation (ASF) under one 2 | :: or more contributor license agreements. See the NOTICE file 3 | :: distributed with this work for additional information 4 | :: regarding copyright ownership. The ASF licenses this file 5 | :: to you under the Apache License, Version 2.0 (the 6 | :: "License"); you may not use this file except in compliance 7 | :: with the License. You may obtain a copy of the License at 8 | :: 9 | :: http://www.apache.org/licenses/LICENSE-2.0 10 | :: 11 | :: Unless required by applicable law or agreed to in writing, 12 | :: software distributed under the License is distributed on an 13 | :: "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 14 | :: KIND, either express or implied. See the License for the 15 | :: specific language governing permissions and limitations 16 | :: under the License. 17 | 18 | @ECHO OFF 19 | SET script_path="%~dp0build" 20 | IF EXIST %script_path% ( 21 | node %script_path% %* 22 | ) ELSE ( 23 | ECHO. 24 | ECHO ERROR: Could not find 'build' script in 'cordova' folder, aborting...>&2 25 | EXIT /B 1 26 | ) 27 | -------------------------------------------------------------------------------- /platforms/browser/cordova/defaults.xml: -------------------------------------------------------------------------------- 1 | 2 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /platforms/browser/cordova/lib/check_reqs.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | /* 4 | Licensed to the Apache Software Foundation (ASF) under one 5 | or more contributor license agreements. See the NOTICE file 6 | distributed with this work for additional information 7 | regarding copyright ownership. The ASF licenses this file 8 | to you under the Apache License, Version 2.0 (the 9 | "License"); you may not use this file except in compliance 10 | with the License. You may obtain a copy of the License at 11 | 12 | http://www.apache.org/licenses/LICENSE-2.0 13 | 14 | Unless required by applicable law or agreed to in writing, 15 | software distributed under the License is distributed on an 16 | "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 17 | KIND, either express or implied. See the License for the 18 | specific language governing permissions and limitations 19 | under the License. 20 | */ 21 | 22 | //add methods as we determine what are the requirements 23 | 24 | var Q = require('q'); 25 | 26 | module.exports.run = function() { 27 | return Q.resolve(); 28 | }; 29 | -------------------------------------------------------------------------------- /platforms/browser/cordova/run.bat: -------------------------------------------------------------------------------- 1 | :: Licensed to the Apache Software Foundation (ASF) under one 2 | :: or more contributor license agreements. See the NOTICE file 3 | :: distributed with this work for additional information 4 | :: regarding copyright ownership. The ASF licenses this file 5 | :: to you under the Apache License, Version 2.0 (the 6 | :: "License"); you may not use this file except in compliance 7 | :: with the License. You may obtain a copy of the License at 8 | :: 9 | :: http://www.apache.org/licenses/LICENSE-2.0 10 | :: 11 | :: Unless required by applicable law or agreed to in writing, 12 | :: software distributed under the License is distributed on an 13 | :: "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 14 | :: KIND, either express or implied. See the License for the 15 | :: specific language governing permissions and limitations 16 | :: under the License. 17 | 18 | @ECHO OFF 19 | SET script_path="%~dp0run" 20 | IF EXIST %script_path% ( 21 | node %script_path% %* 22 | ) ELSE ( 23 | ECHO. 24 | ECHO ERROR: Could not find 'run' script in 'cordova' folder, aborting...>&2 25 | EXIT /B 1 26 | ) 27 | -------------------------------------------------------------------------------- /platforms/browser/cordova/version: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | /* 4 | Licensed to the Apache Software Foundation (ASF) under one 5 | or more contributor license agreements. See the NOTICE file 6 | distributed with this work for additional information 7 | regarding copyright ownership. The ASF licenses this file 8 | to you under the Apache License, Version 2.0 (the 9 | "License"); you may not use this file except in compliance 10 | with the License. You may obtain a copy of the License at 11 | 12 | http://www.apache.org/licenses/LICENSE-2.0 13 | 14 | Unless required by applicable law or agreed to in writing, 15 | software distributed under the License is distributed on an 16 | "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 17 | KIND, either express or implied. See the License for the 18 | specific language governing permissions and limitations 19 | under the License. 20 | */ 21 | 22 | // Coho updates this line: 23 | var VERSION = "4.1.0"; 24 | 25 | console.log(VERSION); 26 | -------------------------------------------------------------------------------- /platforms/browser/cordova/version.bat: -------------------------------------------------------------------------------- 1 | :: Licensed to the Apache Software Foundation (ASF) under one 2 | :: or more contributor license agreements. See the NOTICE file 3 | :: distributed with this work for additional information 4 | :: regarding copyright ownership. The ASF licenses this file 5 | :: to you under the Apache License, Version 2.0 (the 6 | :: "License"); you may not use this file except in compliance 7 | :: with the License. You may obtain a copy of the License at 8 | :: 9 | :: http://www.apache.org/licenses/LICENSE-2.0 10 | :: 11 | :: Unless required by applicable law or agreed to in writing, 12 | :: software distributed under the License is distributed on an 13 | :: "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 14 | :: KIND, either express or implied. See the License for the 15 | :: specific language governing permissions and limitations 16 | :: under the License. 17 | 18 | @ECHO OFF 19 | SET script_path="%~dp0version" 20 | IF EXIST %script_path% ( 21 | node %script_path% %* 22 | ) ELSE ( 23 | ECHO. 24 | ECHO ERROR: Could not find 'version' script in 'cordova' folder, aborting...>&2 25 | EXIT /B 1 26 | ) 27 | -------------------------------------------------------------------------------- /platforms/browser/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/platforms/browser/img/logo.png -------------------------------------------------------------------------------- /platforms/browser/manifest.webapp: -------------------------------------------------------------------------------- 1 | { 2 | "name": "My App", 3 | "description": "Description of your app", 4 | "launch_path": "/index.html", 5 | "icons": { 6 | "128": "/img/logo.png" 7 | }, 8 | "default_locale": "en", 9 | "type": "privileged" 10 | } -------------------------------------------------------------------------------- /platforms/browser/platform_www/plugins/cordova-plugin-device-motion/www/Acceleration.js: -------------------------------------------------------------------------------- 1 | cordova.define("cordova-plugin-device-motion.Acceleration", function(require, exports, module) { /* 2 | * 3 | * Licensed to the Apache Software Foundation (ASF) under one 4 | * or more contributor license agreements. See the NOTICE file 5 | * distributed with this work for additional information 6 | * regarding copyright ownership. The ASF licenses this file 7 | * to you under the Apache License, Version 2.0 (the 8 | * "License"); you may not use this file except in compliance 9 | * with the License. You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, 14 | * software distributed under the License is distributed on an 15 | * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16 | * KIND, either express or implied. See the License for the 17 | * specific language governing permissions and limitations 18 | * under the License. 19 | * 20 | */ 21 | 22 | var Acceleration = function(x, y, z, timestamp) { 23 | this.x = x; 24 | this.y = y; 25 | this.z = z; 26 | this.timestamp = timestamp || (new Date()).getTime(); 27 | }; 28 | 29 | module.exports = Acceleration; 30 | 31 | }); 32 | -------------------------------------------------------------------------------- /platforms/browser/platform_www/plugins/cordova-plugin-file/www/FileUploadResult.js: -------------------------------------------------------------------------------- 1 | cordova.define("cordova-plugin-file.FileUploadResult", function(require, exports, module) { /* 2 | * 3 | * Licensed to the Apache Software Foundation (ASF) under one 4 | * or more contributor license agreements. See the NOTICE file 5 | * distributed with this work for additional information 6 | * regarding copyright ownership. The ASF licenses this file 7 | * to you under the Apache License, Version 2.0 (the 8 | * "License"); you may not use this file except in compliance 9 | * with the License. You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, 14 | * software distributed under the License is distributed on an 15 | * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16 | * KIND, either express or implied. See the License for the 17 | * specific language governing permissions and limitations 18 | * under the License. 19 | * 20 | */ 21 | 22 | /** 23 | * FileUploadResult 24 | * @constructor 25 | */ 26 | module.exports = function FileUploadResult(size, code, content) { 27 | this.bytesSent = size; 28 | this.responseCode = code; 29 | this.response = content; 30 | }; 31 | }); 32 | -------------------------------------------------------------------------------- /platforms/browser/platform_www/plugins/cordova-plugin-file/www/LocalFileSystem.js: -------------------------------------------------------------------------------- 1 | cordova.define("cordova-plugin-file.LocalFileSystem", function(require, exports, module) { /* 2 | * 3 | * Licensed to the Apache Software Foundation (ASF) under one 4 | * or more contributor license agreements. See the NOTICE file 5 | * distributed with this work for additional information 6 | * regarding copyright ownership. The ASF licenses this file 7 | * to you under the Apache License, Version 2.0 (the 8 | * "License"); you may not use this file except in compliance 9 | * with the License. You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, 14 | * software distributed under the License is distributed on an 15 | * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16 | * KIND, either express or implied. See the License for the 17 | * specific language governing permissions and limitations 18 | * under the License. 19 | * 20 | */ 21 | 22 | exports.TEMPORARY = 0; 23 | exports.PERSISTENT = 1; 24 | 25 | }); 26 | -------------------------------------------------------------------------------- /platforms/browser/platform_www/plugins/cordova-plugin-file/www/fileSystems.js: -------------------------------------------------------------------------------- 1 | cordova.define("cordova-plugin-file.fileSystems", function(require, exports, module) { /* 2 | * 3 | * Licensed to the Apache Software Foundation (ASF) under one 4 | * or more contributor license agreements. See the NOTICE file 5 | * distributed with this work for additional information 6 | * regarding copyright ownership. The ASF licenses this file 7 | * to you under the Apache License, Version 2.0 (the 8 | * "License"); you may not use this file except in compliance 9 | * with the License. You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, 14 | * software distributed under the License is distributed on an 15 | * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16 | * KIND, either express or implied. See the License for the 17 | * specific language governing permissions and limitations 18 | * under the License. 19 | * 20 | */ 21 | 22 | // Overridden by Android, BlackBerry 10 and iOS to populate fsMap. 23 | module.exports.getFs = function(name, callback) { 24 | callback(null); 25 | }; 26 | 27 | }); 28 | -------------------------------------------------------------------------------- /platforms/browser/platform_www/plugins/cordova-plugin-vibration/src/browser/Vibration.js: -------------------------------------------------------------------------------- 1 | cordova.define("cordova-plugin-vibration.Vibration", function(require, exports, module) { /* 2 | * 3 | * Licensed to the Apache Software Foundation (ASF) under one 4 | * or more contributor license agreements. See the NOTICE file 5 | * distributed with this work for additional information 6 | * regarding copyright ownership. The ASF licenses this file 7 | * to you under the Apache License, Version 2.0 (the 8 | * "License"); you may not use this file except in compliance 9 | * with the License. You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, 14 | * software distributed under the License is distributed on an 15 | * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16 | * KIND, either express or implied. See the License for the 17 | * specific language governing permissions and limitations 18 | * under the License. 19 | * 20 | */ 21 | 22 | module.exports = { 23 | vibrate: function(success, fail, milliseconds) { 24 | console.log('Vibration is not supported'); 25 | return false; 26 | } 27 | }; 28 | 29 | }); 30 | -------------------------------------------------------------------------------- /platforms/browser/res/icon/android/icon-36-ldpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/platforms/browser/res/icon/android/icon-36-ldpi.png -------------------------------------------------------------------------------- /platforms/browser/res/icon/android/icon-48-mdpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/platforms/browser/res/icon/android/icon-48-mdpi.png -------------------------------------------------------------------------------- /platforms/browser/res/icon/android/icon-72-hdpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/platforms/browser/res/icon/android/icon-72-hdpi.png -------------------------------------------------------------------------------- /platforms/browser/res/icon/android/icon-96-xhdpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/platforms/browser/res/icon/android/icon-96-xhdpi.png -------------------------------------------------------------------------------- /platforms/browser/res/icon/bada-wac/icon-48-type5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/platforms/browser/res/icon/bada-wac/icon-48-type5.png -------------------------------------------------------------------------------- /platforms/browser/res/icon/bada-wac/icon-50-type3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/platforms/browser/res/icon/bada-wac/icon-50-type3.png -------------------------------------------------------------------------------- /platforms/browser/res/icon/bada-wac/icon-80-type4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/platforms/browser/res/icon/bada-wac/icon-80-type4.png -------------------------------------------------------------------------------- /platforms/browser/res/icon/bada/icon-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/platforms/browser/res/icon/bada/icon-128.png -------------------------------------------------------------------------------- /platforms/browser/res/icon/blackberry/icon-80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/platforms/browser/res/icon/blackberry/icon-80.png -------------------------------------------------------------------------------- /platforms/browser/res/icon/blackberry10/icon-80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/platforms/browser/res/icon/blackberry10/icon-80.png -------------------------------------------------------------------------------- /platforms/browser/res/icon/ios/icon-57-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/platforms/browser/res/icon/ios/icon-57-2x.png -------------------------------------------------------------------------------- /platforms/browser/res/icon/ios/icon-57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/platforms/browser/res/icon/ios/icon-57.png -------------------------------------------------------------------------------- /platforms/browser/res/icon/ios/icon-72-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/platforms/browser/res/icon/ios/icon-72-2x.png -------------------------------------------------------------------------------- /platforms/browser/res/icon/ios/icon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/platforms/browser/res/icon/ios/icon-72.png -------------------------------------------------------------------------------- /platforms/browser/res/icon/tizen/icon-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/platforms/browser/res/icon/tizen/icon-128.png -------------------------------------------------------------------------------- /platforms/browser/res/icon/webos/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/platforms/browser/res/icon/webos/icon-64.png -------------------------------------------------------------------------------- /platforms/browser/res/icon/windows-phone/icon-173-tile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/platforms/browser/res/icon/windows-phone/icon-173-tile.png -------------------------------------------------------------------------------- /platforms/browser/res/icon/windows-phone/icon-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/platforms/browser/res/icon/windows-phone/icon-48.png -------------------------------------------------------------------------------- /platforms/browser/res/icon/windows-phone/icon-62-tile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/platforms/browser/res/icon/windows-phone/icon-62-tile.png -------------------------------------------------------------------------------- /platforms/browser/www/images/logo_phonegap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/platforms/browser/www/images/logo_phonegap.png -------------------------------------------------------------------------------- /platforms/browser/www/images/logo_vue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/platforms/browser/www/images/logo_vue.png -------------------------------------------------------------------------------- /platforms/browser/www/plugins/cordova-plugin-device-motion/www/Acceleration.js: -------------------------------------------------------------------------------- 1 | cordova.define("cordova-plugin-device-motion.Acceleration", function(require, exports, module) { /* 2 | * 3 | * Licensed to the Apache Software Foundation (ASF) under one 4 | * or more contributor license agreements. See the NOTICE file 5 | * distributed with this work for additional information 6 | * regarding copyright ownership. The ASF licenses this file 7 | * to you under the Apache License, Version 2.0 (the 8 | * "License"); you may not use this file except in compliance 9 | * with the License. You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, 14 | * software distributed under the License is distributed on an 15 | * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16 | * KIND, either express or implied. See the License for the 17 | * specific language governing permissions and limitations 18 | * under the License. 19 | * 20 | */ 21 | 22 | var Acceleration = function(x, y, z, timestamp) { 23 | this.x = x; 24 | this.y = y; 25 | this.z = z; 26 | this.timestamp = timestamp || (new Date()).getTime(); 27 | }; 28 | 29 | module.exports = Acceleration; 30 | 31 | }); 32 | -------------------------------------------------------------------------------- /platforms/browser/www/plugins/cordova-plugin-file/www/FileUploadResult.js: -------------------------------------------------------------------------------- 1 | cordova.define("cordova-plugin-file.FileUploadResult", function(require, exports, module) { /* 2 | * 3 | * Licensed to the Apache Software Foundation (ASF) under one 4 | * or more contributor license agreements. See the NOTICE file 5 | * distributed with this work for additional information 6 | * regarding copyright ownership. The ASF licenses this file 7 | * to you under the Apache License, Version 2.0 (the 8 | * "License"); you may not use this file except in compliance 9 | * with the License. You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, 14 | * software distributed under the License is distributed on an 15 | * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16 | * KIND, either express or implied. See the License for the 17 | * specific language governing permissions and limitations 18 | * under the License. 19 | * 20 | */ 21 | 22 | /** 23 | * FileUploadResult 24 | * @constructor 25 | */ 26 | module.exports = function FileUploadResult(size, code, content) { 27 | this.bytesSent = size; 28 | this.responseCode = code; 29 | this.response = content; 30 | }; 31 | }); 32 | -------------------------------------------------------------------------------- /platforms/browser/www/plugins/cordova-plugin-file/www/LocalFileSystem.js: -------------------------------------------------------------------------------- 1 | cordova.define("cordova-plugin-file.LocalFileSystem", function(require, exports, module) { /* 2 | * 3 | * Licensed to the Apache Software Foundation (ASF) under one 4 | * or more contributor license agreements. See the NOTICE file 5 | * distributed with this work for additional information 6 | * regarding copyright ownership. The ASF licenses this file 7 | * to you under the Apache License, Version 2.0 (the 8 | * "License"); you may not use this file except in compliance 9 | * with the License. You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, 14 | * software distributed under the License is distributed on an 15 | * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16 | * KIND, either express or implied. See the License for the 17 | * specific language governing permissions and limitations 18 | * under the License. 19 | * 20 | */ 21 | 22 | exports.TEMPORARY = 0; 23 | exports.PERSISTENT = 1; 24 | 25 | }); 26 | -------------------------------------------------------------------------------- /platforms/browser/www/plugins/cordova-plugin-file/www/browser/FileSystem.js: -------------------------------------------------------------------------------- 1 | cordova.define("cordova-plugin-file.firefoxFileSystem", function(require, exports, module) { /* 2 | * 3 | * Licensed to the Apache Software Foundation (ASF) under one 4 | * or more contributor license agreements. See the NOTICE file 5 | * distributed with this work for additional information 6 | * regarding copyright ownership. The ASF licenses this file 7 | * to you under the Apache License, Version 2.0 (the 8 | * "License"); you may not use this file except in compliance 9 | * with the License. You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, 14 | * software distributed under the License is distributed on an 15 | * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16 | * KIND, either express or implied. See the License for the 17 | * specific language governing permissions and limitations 18 | * under the License. 19 | * 20 | */ 21 | 22 | /*global FILESYSTEM_PREFIX: true, module*/ 23 | 24 | FILESYSTEM_PREFIX = "file:///"; 25 | 26 | module.exports = { 27 | __format__: function(fullPath) { 28 | return (FILESYSTEM_PREFIX + this.name + (fullPath[0] === '/' ? '' : '/') + FileSystem.encodeURIPath(fullPath)); 29 | } 30 | }; 31 | 32 | 33 | }); 34 | -------------------------------------------------------------------------------- /platforms/browser/www/plugins/cordova-plugin-file/www/fileSystems.js: -------------------------------------------------------------------------------- 1 | cordova.define("cordova-plugin-file.fileSystems", function(require, exports, module) { /* 2 | * 3 | * Licensed to the Apache Software Foundation (ASF) under one 4 | * or more contributor license agreements. See the NOTICE file 5 | * distributed with this work for additional information 6 | * regarding copyright ownership. The ASF licenses this file 7 | * to you under the Apache License, Version 2.0 (the 8 | * "License"); you may not use this file except in compliance 9 | * with the License. You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, 14 | * software distributed under the License is distributed on an 15 | * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16 | * KIND, either express or implied. See the License for the 17 | * specific language governing permissions and limitations 18 | * under the License. 19 | * 20 | */ 21 | 22 | // Overridden by Android, BlackBerry 10 and iOS to populate fsMap. 23 | module.exports.getFs = function(name, callback) { 24 | callback(null); 25 | }; 26 | 27 | }); 28 | -------------------------------------------------------------------------------- /platforms/browser/www/plugins/cordova-plugin-vibration/src/browser/Vibration.js: -------------------------------------------------------------------------------- 1 | cordova.define("cordova-plugin-vibration.Vibration", function(require, exports, module) { /* 2 | * 3 | * Licensed to the Apache Software Foundation (ASF) under one 4 | * or more contributor license agreements. See the NOTICE file 5 | * distributed with this work for additional information 6 | * regarding copyright ownership. The ASF licenses this file 7 | * to you under the Apache License, Version 2.0 (the 8 | * "License"); you may not use this file except in compliance 9 | * with the License. You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, 14 | * software distributed under the License is distributed on an 15 | * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16 | * KIND, either express or implied. See the License for the 17 | * specific language governing permissions and limitations 18 | * under the License. 19 | * 20 | */ 21 | 22 | module.exports = { 23 | vibrate: function(success, fail, milliseconds) { 24 | console.log('Vibration is not supported'); 25 | return false; 26 | } 27 | }; 28 | 29 | }); 30 | -------------------------------------------------------------------------------- /platforms/browser/www/res/.pgbomit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/platforms/browser/www/res/.pgbomit -------------------------------------------------------------------------------- /platforms/browser/www/res/icon/android/drawable-hdpi-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/platforms/browser/www/res/icon/android/drawable-hdpi-icon.png -------------------------------------------------------------------------------- /platforms/browser/www/res/icon/android/drawable-ldpi-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/platforms/browser/www/res/icon/android/drawable-ldpi-icon.png -------------------------------------------------------------------------------- /platforms/browser/www/res/icon/android/drawable-mdpi-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/platforms/browser/www/res/icon/android/drawable-mdpi-icon.png -------------------------------------------------------------------------------- /platforms/browser/www/res/icon/android/drawable-xhdpi-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/platforms/browser/www/res/icon/android/drawable-xhdpi-icon.png -------------------------------------------------------------------------------- /platforms/browser/www/res/icon/android/drawable-xxhdpi-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/platforms/browser/www/res/icon/android/drawable-xxhdpi-icon.png -------------------------------------------------------------------------------- /platforms/browser/www/res/icon/android/drawable-xxxhdpi-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/platforms/browser/www/res/icon/android/drawable-xxxhdpi-icon.png -------------------------------------------------------------------------------- /platforms/browser/www/res/icon/ios/icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/platforms/browser/www/res/icon/ios/icon-40.png -------------------------------------------------------------------------------- /platforms/browser/www/res/icon/ios/icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/platforms/browser/www/res/icon/ios/icon-40@2x.png -------------------------------------------------------------------------------- /platforms/browser/www/res/icon/ios/icon-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/platforms/browser/www/res/icon/ios/icon-50.png -------------------------------------------------------------------------------- /platforms/browser/www/res/icon/ios/icon-50@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/platforms/browser/www/res/icon/ios/icon-50@2x.png -------------------------------------------------------------------------------- /platforms/browser/www/res/icon/ios/icon-60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/platforms/browser/www/res/icon/ios/icon-60.png -------------------------------------------------------------------------------- /platforms/browser/www/res/icon/ios/icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/platforms/browser/www/res/icon/ios/icon-60@2x.png -------------------------------------------------------------------------------- /platforms/browser/www/res/icon/ios/icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/platforms/browser/www/res/icon/ios/icon-60@3x.png -------------------------------------------------------------------------------- /platforms/browser/www/res/icon/ios/icon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/platforms/browser/www/res/icon/ios/icon-72.png -------------------------------------------------------------------------------- /platforms/browser/www/res/icon/ios/icon-72@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/platforms/browser/www/res/icon/ios/icon-72@2x.png -------------------------------------------------------------------------------- /platforms/browser/www/res/icon/ios/icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/platforms/browser/www/res/icon/ios/icon-76.png -------------------------------------------------------------------------------- /platforms/browser/www/res/icon/ios/icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/platforms/browser/www/res/icon/ios/icon-76@2x.png -------------------------------------------------------------------------------- /platforms/browser/www/res/icon/ios/icon-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/platforms/browser/www/res/icon/ios/icon-small.png -------------------------------------------------------------------------------- /platforms/browser/www/res/icon/ios/icon-small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/platforms/browser/www/res/icon/ios/icon-small@2x.png -------------------------------------------------------------------------------- /platforms/browser/www/res/icon/ios/icon-small@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/platforms/browser/www/res/icon/ios/icon-small@3x.png -------------------------------------------------------------------------------- /platforms/browser/www/res/icon/ios/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/platforms/browser/www/res/icon/ios/icon.png -------------------------------------------------------------------------------- /platforms/browser/www/res/icon/ios/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/platforms/browser/www/res/icon/ios/icon@2x.png -------------------------------------------------------------------------------- /platforms/browser/www/res/icon/windows/Square150x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/platforms/browser/www/res/icon/windows/Square150x150Logo.scale-100.png -------------------------------------------------------------------------------- /platforms/browser/www/res/icon/windows/Square150x150Logo.scale-240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/platforms/browser/www/res/icon/windows/Square150x150Logo.scale-240.png -------------------------------------------------------------------------------- /platforms/browser/www/res/icon/windows/Square30x30Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/platforms/browser/www/res/icon/windows/Square30x30Logo.scale-100.png -------------------------------------------------------------------------------- /platforms/browser/www/res/icon/windows/Square310x310Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/platforms/browser/www/res/icon/windows/Square310x310Logo.scale-100.png -------------------------------------------------------------------------------- /platforms/browser/www/res/icon/windows/Square44x44Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/platforms/browser/www/res/icon/windows/Square44x44Logo.scale-100.png -------------------------------------------------------------------------------- /platforms/browser/www/res/icon/windows/Square44x44Logo.scale-240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/platforms/browser/www/res/icon/windows/Square44x44Logo.scale-240.png -------------------------------------------------------------------------------- /platforms/browser/www/res/icon/windows/Square70x70Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/platforms/browser/www/res/icon/windows/Square70x70Logo.scale-100.png -------------------------------------------------------------------------------- /platforms/browser/www/res/icon/windows/Square71x71Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/platforms/browser/www/res/icon/windows/Square71x71Logo.scale-100.png -------------------------------------------------------------------------------- /platforms/browser/www/res/icon/windows/Square71x71Logo.scale-240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/platforms/browser/www/res/icon/windows/Square71x71Logo.scale-240.png -------------------------------------------------------------------------------- /platforms/browser/www/res/icon/windows/StoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/platforms/browser/www/res/icon/windows/StoreLogo.scale-100.png -------------------------------------------------------------------------------- /platforms/browser/www/res/icon/windows/StoreLogo.scale-240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/platforms/browser/www/res/icon/windows/StoreLogo.scale-240.png -------------------------------------------------------------------------------- /platforms/browser/www/res/icon/windows/Wide310x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/platforms/browser/www/res/icon/windows/Wide310x150Logo.scale-100.png -------------------------------------------------------------------------------- /platforms/browser/www/res/icon/windows/Wide310x150Logo.scale-240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/platforms/browser/www/res/icon/windows/Wide310x150Logo.scale-240.png -------------------------------------------------------------------------------- /platforms/browser/www/res/icon/wp8/ApplicationIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/platforms/browser/www/res/icon/wp8/ApplicationIcon.png -------------------------------------------------------------------------------- /platforms/browser/www/res/icon/wp8/Background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/platforms/browser/www/res/icon/wp8/Background.png -------------------------------------------------------------------------------- /platforms/browser/www/res/screen/android/drawable-land-hdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/platforms/browser/www/res/screen/android/drawable-land-hdpi-screen.png -------------------------------------------------------------------------------- /platforms/browser/www/res/screen/android/drawable-land-ldpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/platforms/browser/www/res/screen/android/drawable-land-ldpi-screen.png -------------------------------------------------------------------------------- /platforms/browser/www/res/screen/android/drawable-land-mdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/platforms/browser/www/res/screen/android/drawable-land-mdpi-screen.png -------------------------------------------------------------------------------- /platforms/browser/www/res/screen/android/drawable-land-xhdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/platforms/browser/www/res/screen/android/drawable-land-xhdpi-screen.png -------------------------------------------------------------------------------- /platforms/browser/www/res/screen/android/drawable-land-xxhdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/platforms/browser/www/res/screen/android/drawable-land-xxhdpi-screen.png -------------------------------------------------------------------------------- /platforms/browser/www/res/screen/android/drawable-land-xxxhdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/platforms/browser/www/res/screen/android/drawable-land-xxxhdpi-screen.png -------------------------------------------------------------------------------- /platforms/browser/www/res/screen/android/drawable-port-hdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/platforms/browser/www/res/screen/android/drawable-port-hdpi-screen.png -------------------------------------------------------------------------------- /platforms/browser/www/res/screen/android/drawable-port-ldpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/platforms/browser/www/res/screen/android/drawable-port-ldpi-screen.png -------------------------------------------------------------------------------- /platforms/browser/www/res/screen/android/drawable-port-mdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/platforms/browser/www/res/screen/android/drawable-port-mdpi-screen.png -------------------------------------------------------------------------------- /platforms/browser/www/res/screen/android/drawable-port-xhdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/platforms/browser/www/res/screen/android/drawable-port-xhdpi-screen.png -------------------------------------------------------------------------------- /platforms/browser/www/res/screen/android/drawable-port-xxhdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/platforms/browser/www/res/screen/android/drawable-port-xxhdpi-screen.png -------------------------------------------------------------------------------- /platforms/browser/www/res/screen/android/drawable-port-xxxhdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/platforms/browser/www/res/screen/android/drawable-port-xxxhdpi-screen.png -------------------------------------------------------------------------------- /platforms/browser/www/res/screen/ios/Default-568h@2x~iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/platforms/browser/www/res/screen/ios/Default-568h@2x~iphone.png -------------------------------------------------------------------------------- /platforms/browser/www/res/screen/ios/Default-667h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/platforms/browser/www/res/screen/ios/Default-667h.png -------------------------------------------------------------------------------- /platforms/browser/www/res/screen/ios/Default-736h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/platforms/browser/www/res/screen/ios/Default-736h.png -------------------------------------------------------------------------------- /platforms/browser/www/res/screen/ios/Default-Landscape-736h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/platforms/browser/www/res/screen/ios/Default-Landscape-736h.png -------------------------------------------------------------------------------- /platforms/browser/www/res/screen/ios/Default-Landscape@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/platforms/browser/www/res/screen/ios/Default-Landscape@2x~ipad.png -------------------------------------------------------------------------------- /platforms/browser/www/res/screen/ios/Default-Landscape~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/platforms/browser/www/res/screen/ios/Default-Landscape~ipad.png -------------------------------------------------------------------------------- /platforms/browser/www/res/screen/ios/Default-Portrait@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/platforms/browser/www/res/screen/ios/Default-Portrait@2x~ipad.png -------------------------------------------------------------------------------- /platforms/browser/www/res/screen/ios/Default-Portrait~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/platforms/browser/www/res/screen/ios/Default-Portrait~ipad.png -------------------------------------------------------------------------------- /platforms/browser/www/res/screen/ios/Default@2x~iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/platforms/browser/www/res/screen/ios/Default@2x~iphone.png -------------------------------------------------------------------------------- /platforms/browser/www/res/screen/ios/Default~iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/platforms/browser/www/res/screen/ios/Default~iphone.png -------------------------------------------------------------------------------- /platforms/browser/www/res/screen/windows/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/platforms/browser/www/res/screen/windows/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /platforms/browser/www/res/screen/windows/SplashScreenPhone.scale-240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/platforms/browser/www/res/screen/windows/SplashScreenPhone.scale-240.png -------------------------------------------------------------------------------- /platforms/browser/www/res/screen/wp8/screen-portrait.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/platforms/browser/www/res/screen/wp8/screen-portrait.jpg -------------------------------------------------------------------------------- /platforms/browser/www/src/App.vue: -------------------------------------------------------------------------------- 1 | 4 | 5 | 14 | 15 | 52 | -------------------------------------------------------------------------------- /platforms/browser/www/src/main.js: -------------------------------------------------------------------------------- 1 | import Vue from 'vue' 2 | import App from './App.vue' 3 | 4 | /* eslint-disable no-new */ 5 | var Phonegap = { 6 | 7 | // Application Constructor 8 | initialize() { 9 | this.bindEvents() 10 | }, 11 | 12 | // Bind Event Listeners 13 | // 14 | // Bind any events that are required on startup. Common events are: 15 | // 'load', 'deviceready', 'offline', and 'online'. 16 | bindEvents() { 17 | document.addEventListener('deviceready', this.onDeviceReady, false) 18 | }, 19 | 20 | // deviceready Event Handler 21 | // 22 | // The scope of 'this' is the event. In order to call the 'receivedEvent' 23 | // function, we must explicitly call 'Phonegap.receivedEvent(...);' 24 | onDeviceReady() { 25 | Phonegap.receivedEvent() 26 | }, 27 | 28 | // Update DOM on a Received Event 29 | receivedEvent() { 30 | 31 | console.log('The device is ready!') 32 | 33 | // Load Vue instance 34 | new Vue({ 35 | el: 'body', 36 | components: { App } 37 | }) 38 | } 39 | } 40 | 41 | 42 | Phonegap.initialize() 43 | -------------------------------------------------------------------------------- /platforms/browser/www/test/unit/Hello.spec.js: -------------------------------------------------------------------------------- 1 | /* global describe, it, expect */ 2 | 3 | import Vue from 'vue' 4 | import Hello from '../../src/components/Hello.vue' 5 | 6 | describe('Hello.vue', () => { 7 | it('should render correct contents', () => { 8 | const vm = new Vue({ 9 | template: '
', 10 | components: { Hello } 11 | }).$mount() 12 | expect(vm.$el.querySelector('.Hello .Lead.Lead-phonegap').textContent).toBe('Phonegap') 13 | expect(vm.$el.querySelector('.Hello .Lead.Lead-spacer').textContent).toBe('meets') 14 | expect(vm.$el.querySelector('.Hello .Lead.Lead-vue').textContent).toBe('Vue.js') 15 | }) 16 | }) 17 | 18 | // also see example testing a component with mocks at 19 | // https://github.com/vuejs/vueify-example/blob/master/test/unit/a.spec.js#L22-L43 20 | -------------------------------------------------------------------------------- /platforms/platforms.json: -------------------------------------------------------------------------------- 1 | { 2 | "browser": "4.1.0" 3 | } -------------------------------------------------------------------------------- /plugins/cordova-plugin-battery-status/NOTICE: -------------------------------------------------------------------------------- 1 | Apache Cordova 2 | Copyright 2012 The Apache Software Foundation 3 | 4 | This product includes software developed at 5 | The Apache Software Foundation (http://www.apache.org/). 6 | -------------------------------------------------------------------------------- /plugins/cordova-plugin-battery-status/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "cordova-plugin-battery-status", 3 | "version": "1.1.2", 4 | "description": "Cordova Battery Plugin", 5 | "cordova": { 6 | "id": "cordova-plugin-battery-status", 7 | "platforms": [ 8 | "android", 9 | "amazon-fireos", 10 | "ubuntu", 11 | "ios", 12 | "blackberry10", 13 | "wp7", 14 | "wp8", 15 | "tizen", 16 | "firefoxos" 17 | ] 18 | }, 19 | "repository": { 20 | "type": "git", 21 | "url": "https://github.com/apache/cordova-plugin-battery-status" 22 | }, 23 | "keywords": [ 24 | "cordova", 25 | "battery", 26 | "ecosystem:cordova", 27 | "cordova-android", 28 | "cordova-amazon-fireos", 29 | "cordova-ubuntu", 30 | "cordova-ios", 31 | "cordova-blackberry10", 32 | "cordova-wp7", 33 | "cordova-wp8", 34 | "cordova-tizen", 35 | "cordova-firefoxos" 36 | ], 37 | "scripts": { 38 | "test": "npm run jshint", 39 | "jshint": "node node_modules/jshint/bin/jshint www && node node_modules/jshint/bin/jshint src && node node_modules/jshint/bin/jshint tests" 40 | }, 41 | "author": "Apache Software Foundation", 42 | "license": "Apache-2.0", 43 | "devDependencies": { 44 | "jshint": "^2.6.0" 45 | } 46 | } 47 | -------------------------------------------------------------------------------- /plugins/cordova-plugin-battery-status/src/windows/BatteryStatus.winmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/plugins/cordova-plugin-battery-status/src/windows/BatteryStatus.winmd -------------------------------------------------------------------------------- /plugins/cordova-plugin-battery-status/src/windows/BatteryStatus/BatteryStatus/.npmignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | /obj/ 3 | *.suo -------------------------------------------------------------------------------- /plugins/cordova-plugin-camera/NOTICE: -------------------------------------------------------------------------------- 1 | Apache Cordova 2 | Copyright 2012 The Apache Software Foundation 3 | 4 | This product includes software developed at 5 | The Apache Software Foundation (http://www.apache.org/). 6 | -------------------------------------------------------------------------------- /plugins/cordova-plugin-camera/doc/img/android-fail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/plugins/cordova-plugin-camera/doc/img/android-fail.png -------------------------------------------------------------------------------- /plugins/cordova-plugin-camera/doc/img/android-success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/plugins/cordova-plugin-camera/doc/img/android-success.png -------------------------------------------------------------------------------- /plugins/cordova-plugin-camera/doc/img/blackberry-fail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/plugins/cordova-plugin-camera/doc/img/blackberry-fail.png -------------------------------------------------------------------------------- /plugins/cordova-plugin-camera/doc/img/blackberry-success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/plugins/cordova-plugin-camera/doc/img/blackberry-success.png -------------------------------------------------------------------------------- /plugins/cordova-plugin-camera/doc/img/browser-fail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/plugins/cordova-plugin-camera/doc/img/browser-fail.png -------------------------------------------------------------------------------- /plugins/cordova-plugin-camera/doc/img/browser-success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/plugins/cordova-plugin-camera/doc/img/browser-success.png -------------------------------------------------------------------------------- /plugins/cordova-plugin-camera/doc/img/firefox-fail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/plugins/cordova-plugin-camera/doc/img/firefox-fail.png -------------------------------------------------------------------------------- /plugins/cordova-plugin-camera/doc/img/firefox-success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/plugins/cordova-plugin-camera/doc/img/firefox-success.png -------------------------------------------------------------------------------- /plugins/cordova-plugin-camera/doc/img/fireos-fail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/plugins/cordova-plugin-camera/doc/img/fireos-fail.png -------------------------------------------------------------------------------- /plugins/cordova-plugin-camera/doc/img/fireos-success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/plugins/cordova-plugin-camera/doc/img/fireos-success.png -------------------------------------------------------------------------------- /plugins/cordova-plugin-camera/doc/img/ios-fail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/plugins/cordova-plugin-camera/doc/img/ios-fail.png -------------------------------------------------------------------------------- /plugins/cordova-plugin-camera/doc/img/ios-success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/plugins/cordova-plugin-camera/doc/img/ios-success.png -------------------------------------------------------------------------------- /plugins/cordova-plugin-camera/doc/img/ubuntu-fail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/plugins/cordova-plugin-camera/doc/img/ubuntu-fail.png -------------------------------------------------------------------------------- /plugins/cordova-plugin-camera/doc/img/ubuntu-success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/plugins/cordova-plugin-camera/doc/img/ubuntu-success.png -------------------------------------------------------------------------------- /plugins/cordova-plugin-camera/doc/img/windows-fail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/plugins/cordova-plugin-camera/doc/img/windows-fail.png -------------------------------------------------------------------------------- /plugins/cordova-plugin-camera/doc/img/windows-success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/plugins/cordova-plugin-camera/doc/img/windows-success.png -------------------------------------------------------------------------------- /plugins/cordova-plugin-camera/doc/img/wp8-fail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/plugins/cordova-plugin-camera/doc/img/wp8-fail.png -------------------------------------------------------------------------------- /plugins/cordova-plugin-camera/doc/img/wp8-success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/plugins/cordova-plugin-camera/doc/img/wp8-success.png -------------------------------------------------------------------------------- /plugins/cordova-plugin-camera/src/ios/UIImage+CropScaleOrientation.h: -------------------------------------------------------------------------------- 1 | /* 2 | Licensed to the Apache Software Foundation (ASF) under one 3 | or more contributor license agreements. See the NOTICE file 4 | distributed with this work for additional information 5 | regarding copyright ownership. The ASF licenses this file 6 | to you under the Apache License, Version 2.0 (the 7 | "License"); you may not use this file except in compliance 8 | with the License. You may obtain a copy of the License at 9 | 10 | http://www.apache.org/licenses/LICENSE-2.0 11 | 12 | Unless required by applicable law or agreed to in writing, 13 | software distributed under the License is distributed on an 14 | "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 15 | KIND, either express or implied. See the License for the 16 | specific language governing permissions and limitations 17 | under the License. 18 | */ 19 | 20 | #import 21 | 22 | @interface UIImage (CropScaleOrientation) 23 | 24 | - (UIImage*)imageByScalingAndCroppingForSize:(CGSize)targetSize; 25 | - (UIImage*)imageCorrectedForCaptureOrientation; 26 | - (UIImage*)imageCorrectedForCaptureOrientation:(UIImageOrientation)imageOrientation; 27 | - (UIImage*)imageByScalingNotCroppingForSize:(CGSize)targetSize; 28 | 29 | @end -------------------------------------------------------------------------------- /plugins/cordova-plugin-camera/src/ubuntu/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/plugins/cordova-plugin-camera/src/ubuntu/back.png -------------------------------------------------------------------------------- /plugins/cordova-plugin-camera/src/ubuntu/shoot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/plugins/cordova-plugin-camera/src/ubuntu/shoot.png -------------------------------------------------------------------------------- /plugins/cordova-plugin-camera/src/ubuntu/toolbar-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/plugins/cordova-plugin-camera/src/ubuntu/toolbar-left.png -------------------------------------------------------------------------------- /plugins/cordova-plugin-camera/src/ubuntu/toolbar-middle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/plugins/cordova-plugin-camera/src/ubuntu/toolbar-middle.png -------------------------------------------------------------------------------- /plugins/cordova-plugin-camera/src/ubuntu/toolbar-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/plugins/cordova-plugin-camera/src/ubuntu/toolbar-right.png -------------------------------------------------------------------------------- /plugins/cordova-plugin-camera/tests/ios/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /plugins/cordova-plugin-camera/tests/ios/CDVCameraTest.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /plugins/cordova-plugin-camera/tests/ios/CDVCameraTest/CDVCameraTest.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /plugins/cordova-plugin-camera/tests/ios/doc/zh/README.md: -------------------------------------------------------------------------------- 1 | 19 | 20 | # CDVCamera 的 iOS 測試 21 | 22 | 您需要安裝`node.js`拉`科爾多瓦 ios`中. 23 | 24 | 第一次安裝科爾多瓦 ios: 25 | 26 | npm install 27 | 28 | 29 | 在當前資料夾中。 30 | 31 | # 從 Xcode 測試 32 | 33 | 1. 啟動`CDVCameraTest.xcworkspace`檔。 34 | 2. 從方案下拉式功能表中選擇"CDVCameraLibTests" 35 | 3. 按一下並堅持`播放`按鈕,然後選擇要運行的測試的`扳手`圖示 36 | 37 | # 從命令列測試 38 | 39 | npm test -------------------------------------------------------------------------------- /plugins/cordova-plugin-camera/tests/ios/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "cordova-plugin-camera-test-ios", 3 | "version": "1.0.0", 4 | "description": "iOS Unit Tests for Camera Plugin", 5 | "author": "Apache Software Foundation", 6 | "license": "Apache Version 2.0", 7 | "dependencies": { 8 | "cordova-ios": "^3.7.0" 9 | }, 10 | "scripts": { 11 | "test": "xcodebuild -scheme CordovaLib && xcodebuild test -scheme CDVCameraLibTests -destination 'platform=iOS Simulator,name=iPhone 5'" 12 | } 13 | } -------------------------------------------------------------------------------- /plugins/cordova-plugin-camera/www/CameraPopoverHandle.js: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Licensed to the Apache Software Foundation (ASF) under one 4 | * or more contributor license agreements. See the NOTICE file 5 | * distributed with this work for additional information 6 | * regarding copyright ownership. The ASF licenses this file 7 | * to you under the Apache License, Version 2.0 (the 8 | * "License"); you may not use this file except in compliance 9 | * with the License. You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, 14 | * software distributed under the License is distributed on an 15 | * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16 | * KIND, either express or implied. See the License for the 17 | * specific language governing permissions and limitations 18 | * under the License. 19 | * 20 | */ 21 | 22 | /** 23 | * @ignore in favour of iOS' one 24 | * A handle to an image picker popover. 25 | */ 26 | var CameraPopoverHandle = function() { 27 | this.setPosition = function(popoverOptions) { 28 | console.log('CameraPopoverHandle.setPosition is only supported on iOS.'); 29 | }; 30 | }; 31 | 32 | module.exports = CameraPopoverHandle; 33 | -------------------------------------------------------------------------------- /plugins/cordova-plugin-compat/README.md: -------------------------------------------------------------------------------- 1 | 21 | 22 | cordova-plugin-compat 23 | ------------------------ 24 | 25 | This repo is for remaining backwards compatible with previous versions of Cordova. 26 | -------------------------------------------------------------------------------- /plugins/cordova-plugin-compat/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "cordova-plugin-compat", 3 | "description": "This repo is for remaining backwards compatible with previous versions of Cordova.", 4 | "version": "1.0.0", 5 | "homepage": "http://github.com/apache/cordova-plugin-compat#readme", 6 | "repository": { 7 | "type": "git", 8 | "url": "git://github.com/apache/cordova-plugin-compat.git" 9 | }, 10 | "bugs": { 11 | "url": "https://github.com/apache/cordova-plugin-compat/issues" 12 | }, 13 | "cordova": { 14 | "id": "cordova-plugin-compat", 15 | "platforms": [ 16 | "android" 17 | ] 18 | }, 19 | "keywords": [ 20 | "ecosystem:cordova", 21 | "ecosystem:phonegap", 22 | "cordova-android" 23 | ], 24 | "engines": [ 25 | { 26 | "name": "cordova", 27 | "version": ">=5.0.0" 28 | } 29 | ], 30 | "author": "Apache Software Foundation", 31 | "license": "Apache-2.0" 32 | } 33 | -------------------------------------------------------------------------------- /plugins/cordova-plugin-console/NOTICE: -------------------------------------------------------------------------------- 1 | Apache Cordova 2 | Copyright 2012 The Apache Software Foundation 3 | 4 | This product includes software developed at 5 | The Apache Software Foundation (http://www.apache.org/). 6 | -------------------------------------------------------------------------------- /plugins/cordova-plugin-console/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "cordova-plugin-console", 3 | "version": "1.0.3", 4 | "description": "Cordova Console Plugin", 5 | "cordova": { 6 | "id": "cordova-plugin-console", 7 | "platforms": [ 8 | "ios", 9 | "ubuntu", 10 | "wp7", 11 | "wp8", 12 | "windows8", 13 | "windows" 14 | ] 15 | }, 16 | "repository": { 17 | "type": "git", 18 | "url": "https://github.com/apache/cordova-plugin-console" 19 | }, 20 | "keywords": [ 21 | "cordova", 22 | "console", 23 | "ecosystem:cordova", 24 | "cordova-ios", 25 | "cordova-ubuntu", 26 | "cordova-wp7", 27 | "cordova-wp8", 28 | "cordova-windows8", 29 | "cordova-windows" 30 | ], 31 | "scripts": { 32 | "test": "npm run jshint", 33 | "jshint": "node node_modules/jshint/bin/jshint www && node node_modules/jshint/bin/jshint src && node node_modules/jshint/bin/jshint tests" 34 | }, 35 | "author": "Apache Software Foundation", 36 | "license": "Apache-2.0", 37 | "devDependencies": { 38 | "jshint": "^2.6.0" 39 | } 40 | } 41 | -------------------------------------------------------------------------------- /plugins/cordova-plugin-console/src/ios/CDVLogger.h: -------------------------------------------------------------------------------- 1 | /* 2 | Licensed to the Apache Software Foundation (ASF) under one 3 | or more contributor license agreements. See the NOTICE file 4 | distributed with this work for additional information 5 | regarding copyright ownership. The ASF licenses this file 6 | to you under the Apache License, Version 2.0 (the 7 | "License"); you may not use this file except in compliance 8 | with the License. You may obtain a copy of the License at 9 | 10 | http://www.apache.org/licenses/LICENSE-2.0 11 | 12 | Unless required by applicable law or agreed to in writing, 13 | software distributed under the License is distributed on an 14 | "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 15 | KIND, either express or implied. See the License for the 16 | specific language governing permissions and limitations 17 | under the License. 18 | */ 19 | 20 | #import 21 | 22 | @interface CDVLogger : CDVPlugin 23 | 24 | - (void)logLevel:(CDVInvokedUrlCommand*)command; 25 | 26 | @end 27 | -------------------------------------------------------------------------------- /plugins/cordova-plugin-console/src/ios/CDVLogger.m: -------------------------------------------------------------------------------- 1 | /* 2 | Licensed to the Apache Software Foundation (ASF) under one 3 | or more contributor license agreements. See the NOTICE file 4 | distributed with this work for additional information 5 | regarding copyright ownership. The ASF licenses this file 6 | to you under the Apache License, Version 2.0 (the 7 | "License"); you may not use this file except in compliance 8 | with the License. You may obtain a copy of the License at 9 | 10 | http://www.apache.org/licenses/LICENSE-2.0 11 | 12 | Unless required by applicable law or agreed to in writing, 13 | software distributed under the License is distributed on an 14 | "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 15 | KIND, either express or implied. See the License for the 16 | specific language governing permissions and limitations 17 | under the License. 18 | */ 19 | 20 | #import "CDVLogger.h" 21 | #import 22 | 23 | @implementation CDVLogger 24 | 25 | /* log a message */ 26 | - (void)logLevel:(CDVInvokedUrlCommand*)command 27 | { 28 | id level = [command argumentAtIndex:0]; 29 | id message = [command argumentAtIndex:1]; 30 | 31 | if ([level isEqualToString:@"LOG"]) { 32 | NSLog(@"%@", message); 33 | } else { 34 | NSLog(@"%@: %@", level, message); 35 | } 36 | } 37 | 38 | @end 39 | -------------------------------------------------------------------------------- /plugins/cordova-plugin-console/src/ubuntu/console.cpp: -------------------------------------------------------------------------------- 1 | /* 2 | * Licensed under the Apache License, Version 2.0 (the "License"); 3 | * you may not use this file except in compliance with the License. 4 | * You may obtain a copy of the License at 5 | * 6 | * http://www.apache.org/licenses/LICENSE-2.0 7 | * 8 | * Unless required by applicable law or agreed to in writing, software 9 | * distributed under the License is distributed on an "AS IS" BASIS, 10 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 11 | * See the License for the specific language governing permissions and 12 | * limitations under the License. 13 | */ 14 | 15 | #include "console.h" 16 | 17 | #include 18 | 19 | Console::Console(Cordova *cordova) : CPlugin(cordova) { 20 | } 21 | 22 | void Console::logLevel(int scId, int ecId, QString level, QString message) { 23 | Q_UNUSED(scId) 24 | Q_UNUSED(ecId) 25 | 26 | if (level != "LOG") 27 | std::cout << "[" << level.toStdString() << "] "; 28 | std::cout << message.toStdString() << std::endl; 29 | } 30 | -------------------------------------------------------------------------------- /plugins/cordova-plugin-console/src/ubuntu/console.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Licensed under the Apache License, Version 2.0 (the "License"); 3 | * you may not use this file except in compliance with the License. 4 | * You may obtain a copy of the License at 5 | * 6 | * http://www.apache.org/licenses/LICENSE-2.0 7 | * 8 | * Unless required by applicable law or agreed to in writing, software 9 | * distributed under the License is distributed on an "AS IS" BASIS, 10 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 11 | * See the License for the specific language governing permissions and 12 | * limitations under the License. 13 | */ 14 | 15 | #ifndef CONSOLE_H_FDSVCXGFRS 16 | #define CONSOLE_H_FDSVCXGFRS 17 | 18 | #include 19 | 20 | #include 21 | 22 | class Console : public CPlugin { 23 | Q_OBJECT 24 | public: 25 | explicit Console(Cordova *cordova); 26 | 27 | virtual const QString fullName() override { 28 | return Console::fullID(); 29 | } 30 | 31 | virtual const QString shortName() override { 32 | return "Console"; 33 | } 34 | 35 | static const QString fullID() { 36 | return "Console"; 37 | } 38 | 39 | public slots: 40 | void logLevel(int scId, int ecId, QString level, QString message); 41 | }; 42 | 43 | #endif 44 | -------------------------------------------------------------------------------- /plugins/cordova-plugin-contacts/NOTICE: -------------------------------------------------------------------------------- 1 | Apache Cordova 2 | Copyright 2012 The Apache Software Foundation 3 | 4 | This product includes software developed at 5 | The Apache Software Foundation (http://www.apache.org/). 6 | Microsoft Open Technologies, Inc. (http://msopentech.com/). -------------------------------------------------------------------------------- /plugins/cordova-plugin-contacts/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "cordova-plugin-contacts", 3 | "version": "2.0.1", 4 | "description": "Cordova Contacts Plugin", 5 | "cordova": { 6 | "id": "cordova-plugin-contacts", 7 | "platforms": [ 8 | "android", 9 | "amazon-fireos", 10 | "ubuntu", 11 | "ios", 12 | "blackberry10", 13 | "wp8", 14 | "firefoxos", 15 | "windows8", 16 | "windows" 17 | ] 18 | }, 19 | "repository": { 20 | "type": "git", 21 | "url": "https://github.com/apache/cordova-plugin-contacts" 22 | }, 23 | "keywords": [ 24 | "cordova", 25 | "contacts", 26 | "ecosystem:cordova", 27 | "cordova-android", 28 | "cordova-amazon-fireos", 29 | "cordova-ubuntu", 30 | "cordova-ios", 31 | "cordova-blackberry10", 32 | "cordova-wp7", 33 | "cordova-wp8", 34 | "cordova-firefoxos", 35 | "cordova-windows8", 36 | "cordova-windows" 37 | ], 38 | "author": "Apache Software Foundation", 39 | "license": "Apache 2.0" 40 | } 41 | -------------------------------------------------------------------------------- /plugins/cordova-plugin-contacts/src/blackberry10/ContactNews.js: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Licensed to the Apache Software Foundation (ASF) under one 4 | * or more contributor license agreements. See the NOTICE file 5 | * distributed with this work for additional information 6 | * regarding copyright ownership. The ASF licenses this file 7 | * to you under the Apache License, Version 2.0 (the 8 | * "License"); you may not use this file except in compliance 9 | * with the License. You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, 14 | * software distributed under the License is distributed on an 15 | * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16 | * KIND, either express or implied. See the License for the 17 | * specific language governing permissions and limitations 18 | * under the License. 19 | * 20 | */ 21 | var ContactNews = function (args) { 22 | this.title = args.title || ""; 23 | this.body = args.body || ""; 24 | this.articleSource = args.articleSource || ""; 25 | this.companies = args.companies || []; 26 | this.publishedAt = new Date(parseInt(args.publishedAt, 10)) || null; 27 | this.uri = args.uri || ""; 28 | this.type = args.type || ""; 29 | }; 30 | 31 | module.exports = ContactNews; 32 | -------------------------------------------------------------------------------- /plugins/cordova-plugin-contacts/src/blackberry10/ContactOrganization.js: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Licensed to the Apache Software Foundation (ASF) under one 4 | * or more contributor license agreements. See the NOTICE file 5 | * distributed with this work for additional information 6 | * regarding copyright ownership. The ASF licenses this file 7 | * to you under the Apache License, Version 2.0 (the 8 | * "License"); you may not use this file except in compliance 9 | * with the License. You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, 14 | * software distributed under the License is distributed on an 15 | * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16 | * KIND, either express or implied. See the License for the 17 | * specific language governing permissions and limitations 18 | * under the License. 19 | * 20 | */ 21 | var ContactOrganization = function (properties) { 22 | this.name = properties && properties.name ? properties.name : ""; 23 | this.department = properties && properties.department ? properties.department : ""; 24 | this.title = properties && properties.title ? properties.title : ""; 25 | }; 26 | 27 | module.exports = ContactOrganization; 28 | -------------------------------------------------------------------------------- /plugins/cordova-plugin-contacts/src/blackberry10/ContactPhoto.js: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Licensed to the Apache Software Foundation (ASF) under one 4 | * or more contributor license agreements. See the NOTICE file 5 | * distributed with this work for additional information 6 | * regarding copyright ownership. The ASF licenses this file 7 | * to you under the Apache License, Version 2.0 (the 8 | * "License"); you may not use this file except in compliance 9 | * with the License. You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, 14 | * software distributed under the License is distributed on an 15 | * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16 | * KIND, either express or implied. See the License for the 17 | * specific language governing permissions and limitations 18 | * under the License. 19 | * 20 | */ 21 | var ContactPhoto = function (originalFilePath, pref) { 22 | this.originalFilePath = originalFilePath || ""; 23 | this.pref = pref || false; 24 | this.largeFilePath = ""; 25 | this.smallFilePath = ""; 26 | }; 27 | 28 | module.exports = ContactPhoto; 29 | -------------------------------------------------------------------------------- /plugins/cordova-plugin-device-motion/NOTICE: -------------------------------------------------------------------------------- 1 | Apache Cordova 2 | Copyright 2012 The Apache Software Foundation 3 | 4 | This product includes software developed at 5 | The Apache Software Foundation (http://www.apache.org/). 6 | -------------------------------------------------------------------------------- /plugins/cordova-plugin-device-motion/tests/plugin.xml: -------------------------------------------------------------------------------- 1 | 2 | 20 | 21 | 24 | Cordova Device Motion Plugin Tests 25 | Apache 2.0 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /plugins/cordova-plugin-device-motion/www/Acceleration.js: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Licensed to the Apache Software Foundation (ASF) under one 4 | * or more contributor license agreements. See the NOTICE file 5 | * distributed with this work for additional information 6 | * regarding copyright ownership. The ASF licenses this file 7 | * to you under the Apache License, Version 2.0 (the 8 | * "License"); you may not use this file except in compliance 9 | * with the License. You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, 14 | * software distributed under the License is distributed on an 15 | * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16 | * KIND, either express or implied. See the License for the 17 | * specific language governing permissions and limitations 18 | * under the License. 19 | * 20 | */ 21 | 22 | var Acceleration = function(x, y, z, timestamp) { 23 | this.x = x; 24 | this.y = y; 25 | this.z = z; 26 | this.timestamp = timestamp || (new Date()).getTime(); 27 | }; 28 | 29 | module.exports = Acceleration; 30 | -------------------------------------------------------------------------------- /plugins/cordova-plugin-device-orientation/NOTICE: -------------------------------------------------------------------------------- 1 | Apache Cordova 2 | Copyright 2012 The Apache Software Foundation 3 | 4 | This product includes software developed at 5 | The Apache Software Foundation (http://www.apache.org/). 6 | -------------------------------------------------------------------------------- /plugins/cordova-plugin-device-orientation/tests/plugin.xml: -------------------------------------------------------------------------------- 1 | 2 | 20 | 21 | 25 | Cordova Device Orientation Plugin Tests 26 | Apache 2.0 27 | 28 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /plugins/cordova-plugin-device-orientation/www/CompassError.js: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Licensed to the Apache Software Foundation (ASF) under one 4 | * or more contributor license agreements. See the NOTICE file 5 | * distributed with this work for additional information 6 | * regarding copyright ownership. The ASF licenses this file 7 | * to you under the Apache License, Version 2.0 (the 8 | * "License"); you may not use this file except in compliance 9 | * with the License. You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, 14 | * software distributed under the License is distributed on an 15 | * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16 | * KIND, either express or implied. See the License for the 17 | * specific language governing permissions and limitations 18 | * under the License. 19 | * 20 | */ 21 | 22 | /** 23 | * CompassError. 24 | * An error code assigned by an implementation when an error has occurred 25 | * @constructor 26 | */ 27 | var CompassError = function(err) { 28 | this.code = (err !== undefined ? err : null); 29 | }; 30 | 31 | CompassError.COMPASS_INTERNAL_ERR = 0; 32 | CompassError.COMPASS_NOT_SUPPORTED = 20; 33 | 34 | module.exports = CompassError; 35 | -------------------------------------------------------------------------------- /plugins/cordova-plugin-device-orientation/www/CompassHeading.js: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Licensed to the Apache Software Foundation (ASF) under one 4 | * or more contributor license agreements. See the NOTICE file 5 | * distributed with this work for additional information 6 | * regarding copyright ownership. The ASF licenses this file 7 | * to you under the Apache License, Version 2.0 (the 8 | * "License"); you may not use this file except in compliance 9 | * with the License. You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, 14 | * software distributed under the License is distributed on an 15 | * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16 | * KIND, either express or implied. See the License for the 17 | * specific language governing permissions and limitations 18 | * under the License. 19 | * 20 | */ 21 | 22 | var CompassHeading = function(magneticHeading, trueHeading, headingAccuracy, timestamp) { 23 | this.magneticHeading = magneticHeading; 24 | this.trueHeading = trueHeading; 25 | this.headingAccuracy = headingAccuracy; 26 | this.timestamp = timestamp || new Date().getTime(); 27 | }; 28 | 29 | module.exports = CompassHeading; 30 | -------------------------------------------------------------------------------- /plugins/cordova-plugin-device/NOTICE: -------------------------------------------------------------------------------- 1 | Apache Cordova 2 | Copyright 2012 The Apache Software Foundation 3 | 4 | This product includes software developed at 5 | The Apache Software Foundation (http://www.apache.org/). 6 | -------------------------------------------------------------------------------- /plugins/cordova-plugin-device/src/ios/CDVDevice.h: -------------------------------------------------------------------------------- 1 | /* 2 | Licensed to the Apache Software Foundation (ASF) under one 3 | or more contributor license agreements. See the NOTICE file 4 | distributed with this work for additional information 5 | regarding copyright ownership. The ASF licenses this file 6 | to you under the Apache License, Version 2.0 (the 7 | "License"); you may not use this file except in compliance 8 | with the License. You may obtain a copy of the License at 9 | 10 | http://www.apache.org/licenses/LICENSE-2.0 11 | 12 | Unless required by applicable law or agreed to in writing, 13 | software distributed under the License is distributed on an 14 | "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 15 | KIND, either express or implied. See the License for the 16 | specific language governing permissions and limitations 17 | under the License. 18 | */ 19 | 20 | #import 21 | #import 22 | 23 | @interface CDVDevice : CDVPlugin 24 | {} 25 | 26 | + (NSString*)cordovaVersion; 27 | 28 | - (void)getDeviceInfo:(CDVInvokedUrlCommand*)command; 29 | 30 | @end 31 | -------------------------------------------------------------------------------- /plugins/cordova-plugin-device/src/osx/CDVDevice.h: -------------------------------------------------------------------------------- 1 | /* 2 | Licensed to the Apache Software Foundation (ASF) under one 3 | or more contributor license agreements. See the NOTICE file 4 | distributed with this work for additional information 5 | regarding copyright ownership. The ASF licenses this file 6 | to you under the Apache License, Version 2.0 (the 7 | "License"); you may not use this file except in compliance 8 | with the License. You may obtain a copy of the License at 9 | 10 | http://www.apache.org/licenses/LICENSE-2.0 11 | 12 | Unless required by applicable law or agreed to in writing, 13 | software distributed under the License is distributed on an 14 | "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 15 | KIND, either express or implied. See the License for the 16 | specific language governing permissions and limitations 17 | under the License. 18 | */ 19 | 20 | #import 21 | 22 | @interface CDVDevice : CDVPlugin 23 | 24 | + (NSString*) cordovaVersion; 25 | 26 | - (void) getDeviceInfo:(CDVInvokedUrlCommand*)command; 27 | 28 | @end 29 | -------------------------------------------------------------------------------- /plugins/cordova-plugin-device/tests/plugin.xml: -------------------------------------------------------------------------------- 1 | 2 | 20 | 21 | 26 | Cordova Device Plugin Tests 27 | Apache 2.0 28 | 29 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /plugins/cordova-plugin-dialogs/NOTICE: -------------------------------------------------------------------------------- 1 | Apache Cordova 2 | Copyright 2012 The Apache Software Foundation 3 | 4 | This product includes software developed at 5 | The Apache Software Foundation (http://www.apache.org/). 6 | -------------------------------------------------------------------------------- /plugins/cordova-plugin-dialogs/src/ios/CDVNotification.bundle/beep.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/plugins/cordova-plugin-dialogs/src/ios/CDVNotification.bundle/beep.wav -------------------------------------------------------------------------------- /plugins/cordova-plugin-dialogs/src/wp/notification-beep.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/plugins/cordova-plugin-dialogs/src/wp/notification-beep.wav -------------------------------------------------------------------------------- /plugins/cordova-plugin-dialogs/tests/plugin.xml: -------------------------------------------------------------------------------- 1 | 2 | 20 | 21 | 24 | Cordova Notification Plugin Tests 25 | Apache 2.0 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /plugins/cordova-plugin-dialogs/www/blackberry10/notification-beep.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/plugins/cordova-plugin-dialogs/www/blackberry10/notification-beep.wav -------------------------------------------------------------------------------- /plugins/cordova-plugin-dialogs/www/firefoxos/danger-press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/plugins/cordova-plugin-dialogs/www/firefoxos/danger-press.png -------------------------------------------------------------------------------- /plugins/cordova-plugin-dialogs/www/firefoxos/danger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/plugins/cordova-plugin-dialogs/www/firefoxos/danger.png -------------------------------------------------------------------------------- /plugins/cordova-plugin-dialogs/www/firefoxos/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/plugins/cordova-plugin-dialogs/www/firefoxos/default.png -------------------------------------------------------------------------------- /plugins/cordova-plugin-dialogs/www/firefoxos/gradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/plugins/cordova-plugin-dialogs/www/firefoxos/gradient.png -------------------------------------------------------------------------------- /plugins/cordova-plugin-dialogs/www/firefoxos/pattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/plugins/cordova-plugin-dialogs/www/firefoxos/pattern.png -------------------------------------------------------------------------------- /plugins/cordova-plugin-dialogs/www/firefoxos/recommend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/plugins/cordova-plugin-dialogs/www/firefoxos/recommend.png -------------------------------------------------------------------------------- /plugins/cordova-plugin-file-transfer/NOTICE: -------------------------------------------------------------------------------- 1 | Apache Cordova 2 | Copyright 2012 The Apache Software Foundation 3 | 4 | This product includes software developed at 5 | The Apache Software Foundation (http://www.apache.org/). 6 | 7 | This product includes a copy of OkHttp from: 8 | https://github.com/square/okhttp 9 | -------------------------------------------------------------------------------- /plugins/cordova-plugin-file-transfer/tests/plugin.xml: -------------------------------------------------------------------------------- 1 | 2 | 20 | 21 | 25 | Cordova File Transfer Plugin Tests 26 | Apache 2.0 27 | 28 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /plugins/cordova-plugin-file-transfer/www/blackberry10/.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "globals": { 3 | "requestAnimationFrame": true 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /plugins/cordova-plugin-file/NOTICE: -------------------------------------------------------------------------------- 1 | Apache Cordova 2 | Copyright 2012 The Apache Software Foundation 3 | 4 | This product includes software developed at 5 | The Apache Software Foundation (http://www.apache.org/). 6 | -------------------------------------------------------------------------------- /plugins/cordova-plugin-file/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "cordova-plugin-file", 3 | "version": "4.2.0", 4 | "description": "Cordova File Plugin", 5 | "cordova": { 6 | "id": "cordova-plugin-file", 7 | "platforms": [ 8 | "android", 9 | "amazon-fireos", 10 | "ubuntu", 11 | "ios", 12 | "osx", 13 | "wp7", 14 | "wp8", 15 | "blackberry10", 16 | "windows8", 17 | "windows", 18 | "firefoxos" 19 | ] 20 | }, 21 | "repository": { 22 | "type": "git", 23 | "url": "https://github.com/apache/cordova-plugin-file" 24 | }, 25 | "keywords": [ 26 | "cordova", 27 | "file", 28 | "ecosystem:cordova", 29 | "cordova-android", 30 | "cordova-amazon-fireos", 31 | "cordova-ubuntu", 32 | "cordova-ios", 33 | "cordova-osx", 34 | "cordova-wp7", 35 | "cordova-wp8", 36 | "cordova-blackberry10", 37 | "cordova-windows8", 38 | "cordova-windows", 39 | "cordova-firefoxos" 40 | ], 41 | "scripts": { 42 | "test": "npm run jshint", 43 | "jshint": "node node_modules/jshint/bin/jshint www && node node_modules/jshint/bin/jshint src && node node_modules/jshint/bin/jshint tests" 44 | }, 45 | "author": "Apache Software Foundation", 46 | "license": "Apache-2.0", 47 | "devDependencies": { 48 | "jshint": "^2.6.0" 49 | } 50 | } 51 | -------------------------------------------------------------------------------- /plugins/cordova-plugin-file/src/android/EncodingException.java: -------------------------------------------------------------------------------- 1 | /* 2 | Licensed to the Apache Software Foundation (ASF) under one 3 | or more contributor license agreements. See the NOTICE file 4 | distributed with this work for additional information 5 | regarding copyright ownership. The ASF licenses this file 6 | to you under the Apache License, Version 2.0 (the 7 | "License"); you may not use this file except in compliance 8 | with the License. You may obtain a copy of the License at 9 | 10 | http://www.apache.org/licenses/LICENSE-2.0 11 | 12 | Unless required by applicable law or agreed to in writing, 13 | software distributed under the License is distributed on an 14 | "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 15 | KIND, either express or implied. See the License for the 16 | specific language governing permissions and limitations 17 | under the License. 18 | */ 19 | 20 | package org.apache.cordova.file; 21 | 22 | @SuppressWarnings("serial") 23 | public class EncodingException extends Exception { 24 | 25 | public EncodingException(String message) { 26 | super(message); 27 | } 28 | 29 | } 30 | -------------------------------------------------------------------------------- /plugins/cordova-plugin-file/src/android/FileExistsException.java: -------------------------------------------------------------------------------- 1 | /* 2 | Licensed to the Apache Software Foundation (ASF) under one 3 | or more contributor license agreements. See the NOTICE file 4 | distributed with this work for additional information 5 | regarding copyright ownership. The ASF licenses this file 6 | to you under the Apache License, Version 2.0 (the 7 | "License"); you may not use this file except in compliance 8 | with the License. You may obtain a copy of the License at 9 | 10 | http://www.apache.org/licenses/LICENSE-2.0 11 | 12 | Unless required by applicable law or agreed to in writing, 13 | software distributed under the License is distributed on an 14 | "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 15 | KIND, either express or implied. See the License for the 16 | specific language governing permissions and limitations 17 | under the License. 18 | */ 19 | 20 | package org.apache.cordova.file; 21 | 22 | @SuppressWarnings("serial") 23 | public class FileExistsException extends Exception { 24 | 25 | public FileExistsException(String msg) { 26 | super(msg); 27 | } 28 | 29 | } 30 | -------------------------------------------------------------------------------- /plugins/cordova-plugin-file/src/android/InvalidModificationException.java: -------------------------------------------------------------------------------- 1 | /* 2 | Licensed to the Apache Software Foundation (ASF) under one 3 | or more contributor license agreements. See the NOTICE file 4 | distributed with this work for additional information 5 | regarding copyright ownership. The ASF licenses this file 6 | to you under the Apache License, Version 2.0 (the 7 | "License"); you may not use this file except in compliance 8 | with the License. You may obtain a copy of the License at 9 | 10 | http://www.apache.org/licenses/LICENSE-2.0 11 | 12 | Unless required by applicable law or agreed to in writing, 13 | software distributed under the License is distributed on an 14 | "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 15 | KIND, either express or implied. See the License for the 16 | specific language governing permissions and limitations 17 | under the License. 18 | */ 19 | 20 | 21 | package org.apache.cordova.file; 22 | 23 | @SuppressWarnings("serial") 24 | public class InvalidModificationException extends Exception { 25 | 26 | public InvalidModificationException(String message) { 27 | super(message); 28 | } 29 | 30 | } 31 | -------------------------------------------------------------------------------- /plugins/cordova-plugin-file/src/android/NoModificationAllowedException.java: -------------------------------------------------------------------------------- 1 | /* 2 | Licensed to the Apache Software Foundation (ASF) under one 3 | or more contributor license agreements. See the NOTICE file 4 | distributed with this work for additional information 5 | regarding copyright ownership. The ASF licenses this file 6 | to you under the Apache License, Version 2.0 (the 7 | "License"); you may not use this file except in compliance 8 | with the License. You may obtain a copy of the License at 9 | 10 | http://www.apache.org/licenses/LICENSE-2.0 11 | 12 | Unless required by applicable law or agreed to in writing, 13 | software distributed under the License is distributed on an 14 | "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 15 | KIND, either express or implied. See the License for the 16 | specific language governing permissions and limitations 17 | under the License. 18 | */ 19 | 20 | package org.apache.cordova.file; 21 | 22 | @SuppressWarnings("serial") 23 | public class NoModificationAllowedException extends Exception { 24 | 25 | public NoModificationAllowedException(String message) { 26 | super(message); 27 | } 28 | 29 | } 30 | -------------------------------------------------------------------------------- /plugins/cordova-plugin-file/src/android/TypeMismatchException.java: -------------------------------------------------------------------------------- 1 | /* 2 | Licensed to the Apache Software Foundation (ASF) under one 3 | or more contributor license agreements. See the NOTICE file 4 | distributed with this work for additional information 5 | regarding copyright ownership. The ASF licenses this file 6 | to you under the Apache License, Version 2.0 (the 7 | "License"); you may not use this file except in compliance 8 | with the License. You may obtain a copy of the License at 9 | 10 | http://www.apache.org/licenses/LICENSE-2.0 11 | 12 | Unless required by applicable law or agreed to in writing, 13 | software distributed under the License is distributed on an 14 | "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 15 | KIND, either express or implied. See the License for the 16 | specific language governing permissions and limitations 17 | under the License. 18 | */ 19 | 20 | 21 | package org.apache.cordova.file; 22 | 23 | @SuppressWarnings("serial") 24 | public class TypeMismatchException extends Exception { 25 | 26 | public TypeMismatchException(String message) { 27 | super(message); 28 | } 29 | 30 | } 31 | -------------------------------------------------------------------------------- /plugins/cordova-plugin-file/src/ios/CDVAssetLibraryFilesystem.h: -------------------------------------------------------------------------------- 1 | /* 2 | Licensed to the Apache Software Foundation (ASF) under one 3 | or more contributor license agreements. See the NOTICE file 4 | distributed with this work for additional information 5 | regarding copyright ownership. The ASF licenses this file 6 | to you under the Apache License, Version 2.0 (the 7 | "License"); you may not use this file except in compliance 8 | with the License. You may obtain a copy of the License at 9 | 10 | http://www.apache.org/licenses/LICENSE-2.0 11 | 12 | Unless required by applicable law or agreed to in writing, 13 | software distributed under the License is distributed on an 14 | "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 15 | KIND, either express or implied. See the License for the 16 | specific language governing permissions and limitations 17 | under the License. 18 | */ 19 | 20 | #import "CDVFile.h" 21 | 22 | extern NSString* const kCDVAssetsLibraryPrefix; 23 | extern NSString* const kCDVAssetsLibraryScheme; 24 | 25 | @interface CDVAssetLibraryFilesystem : NSObject { 26 | } 27 | 28 | - (id) initWithName:(NSString *)name; 29 | 30 | @end 31 | -------------------------------------------------------------------------------- /plugins/cordova-plugin-file/src/ios/CDVLocalFilesystem.h: -------------------------------------------------------------------------------- 1 | /* 2 | Licensed to the Apache Software Foundation (ASF) under one 3 | or more contributor license agreements. See the NOTICE file 4 | distributed with this work for additional information 5 | regarding copyright ownership. The ASF licenses this file 6 | to you under the Apache License, Version 2.0 (the 7 | "License"); you may not use this file except in compliance 8 | with the License. You may obtain a copy of the License at 9 | 10 | http://www.apache.org/licenses/LICENSE-2.0 11 | 12 | Unless required by applicable law or agreed to in writing, 13 | software distributed under the License is distributed on an 14 | "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 15 | KIND, either express or implied. See the License for the 16 | specific language governing permissions and limitations 17 | under the License. 18 | */ 19 | 20 | #import "CDVFile.h" 21 | 22 | @interface CDVLocalFilesystem : NSObject { 23 | NSString *_name; 24 | NSString *_fsRoot; 25 | } 26 | 27 | - (id) initWithName:(NSString *)name root:(NSString *)fsRoot; 28 | + (NSString*)getMimeTypeFromPath:(NSString*)fullPath; 29 | 30 | @property (nonatomic,strong) NSString *fsRoot; 31 | 32 | @end 33 | -------------------------------------------------------------------------------- /plugins/cordova-plugin-file/src/osx/CDVLocalFilesystem.h: -------------------------------------------------------------------------------- 1 | /* 2 | Licensed to the Apache Software Foundation (ASF) under one 3 | or more contributor license agreements. See the NOTICE file 4 | distributed with this work for additional information 5 | regarding copyright ownership. The ASF licenses this file 6 | to you under the Apache License, Version 2.0 (the 7 | "License"); you may not use this file except in compliance 8 | with the License. You may obtain a copy of the License at 9 | 10 | http://www.apache.org/licenses/LICENSE-2.0 11 | 12 | Unless required by applicable law or agreed to in writing, 13 | software distributed under the License is distributed on an 14 | "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 15 | KIND, either express or implied. See the License for the 16 | specific language governing permissions and limitations 17 | under the License. 18 | */ 19 | 20 | #import "CDVFile.h" 21 | 22 | @interface CDVLocalFilesystem : NSObject { 23 | NSString *_name; 24 | NSString *_fsRoot; 25 | } 26 | 27 | - (id) initWithName:(NSString *)name root:(NSString *)fsRoot; 28 | + (NSString*)getMimeTypeFromPath:(NSString*)fullPath; 29 | 30 | @property (nonatomic,strong) NSString *fsRoot; 31 | 32 | @end 33 | -------------------------------------------------------------------------------- /plugins/cordova-plugin-file/tests/www/fixtures/asset-test/asset-test.txt: -------------------------------------------------------------------------------- 1 | This file is here for testing purposes -------------------------------------------------------------------------------- /plugins/cordova-plugin-file/www/FileUploadResult.js: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Licensed to the Apache Software Foundation (ASF) under one 4 | * or more contributor license agreements. See the NOTICE file 5 | * distributed with this work for additional information 6 | * regarding copyright ownership. The ASF licenses this file 7 | * to you under the Apache License, Version 2.0 (the 8 | * "License"); you may not use this file except in compliance 9 | * with the License. You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, 14 | * software distributed under the License is distributed on an 15 | * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16 | * KIND, either express or implied. See the License for the 17 | * specific language governing permissions and limitations 18 | * under the License. 19 | * 20 | */ 21 | 22 | /** 23 | * FileUploadResult 24 | * @constructor 25 | */ 26 | module.exports = function FileUploadResult(size, code, content) { 27 | this.bytesSent = size; 28 | this.responseCode = code; 29 | this.response = content; 30 | }; -------------------------------------------------------------------------------- /plugins/cordova-plugin-file/www/LocalFileSystem.js: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Licensed to the Apache Software Foundation (ASF) under one 4 | * or more contributor license agreements. See the NOTICE file 5 | * distributed with this work for additional information 6 | * regarding copyright ownership. The ASF licenses this file 7 | * to you under the Apache License, Version 2.0 (the 8 | * "License"); you may not use this file except in compliance 9 | * with the License. You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, 14 | * software distributed under the License is distributed on an 15 | * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16 | * KIND, either express or implied. See the License for the 17 | * specific language governing permissions and limitations 18 | * under the License. 19 | * 20 | */ 21 | 22 | exports.TEMPORARY = 0; 23 | exports.PERSISTENT = 1; 24 | -------------------------------------------------------------------------------- /plugins/cordova-plugin-file/www/blackberry10/.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "globals": { 3 | "requestAnimationFrame": true 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /plugins/cordova-plugin-file/www/blackberry10/setMetadata.js: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Licensed to the Apache Software Foundation (ASF) under one 4 | * or more contributor license agreements. See the NOTICE file 5 | * distributed with this work for additional information 6 | * regarding copyright ownership. The ASF licenses this file 7 | * to you under the Apache License, Version 2.0 (the 8 | * "License"); you may not use this file except in compliance 9 | * with the License. You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, 14 | * software distributed under the License is distributed on an 15 | * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16 | * KIND, either express or implied. See the License for the 17 | * specific language governing permissions and limitations 18 | * under the License. 19 | * 20 | */ 21 | 22 | /* 23 | * setMetadata 24 | * 25 | * BB10 OS does not support setting file metadata via HTML5 File System 26 | */ 27 | 28 | module.exports = function (success, fail, args) { 29 | console.error("setMetadata not supported on BB10", arguments); 30 | if (typeof(fail) === 'function') { 31 | fail(); 32 | } 33 | }; 34 | -------------------------------------------------------------------------------- /plugins/cordova-plugin-file/www/browser/FileSystem.js: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Licensed to the Apache Software Foundation (ASF) under one 4 | * or more contributor license agreements. See the NOTICE file 5 | * distributed with this work for additional information 6 | * regarding copyright ownership. The ASF licenses this file 7 | * to you under the Apache License, Version 2.0 (the 8 | * "License"); you may not use this file except in compliance 9 | * with the License. You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, 14 | * software distributed under the License is distributed on an 15 | * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16 | * KIND, either express or implied. See the License for the 17 | * specific language governing permissions and limitations 18 | * under the License. 19 | * 20 | */ 21 | 22 | /*global FILESYSTEM_PREFIX: true, module*/ 23 | 24 | FILESYSTEM_PREFIX = "file:///"; 25 | 26 | module.exports = { 27 | __format__: function(fullPath) { 28 | return (FILESYSTEM_PREFIX + this.name + (fullPath[0] === '/' ? '' : '/') + FileSystem.encodeURIPath(fullPath)); 29 | } 30 | }; 31 | 32 | -------------------------------------------------------------------------------- /plugins/cordova-plugin-file/www/browser/isChrome.js: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Licensed to the Apache Software Foundation (ASF) under one 4 | * or more contributor license agreements. See the NOTICE file 5 | * distributed with this work for additional information 6 | * regarding copyright ownership. The ASF licenses this file 7 | * to you under the Apache License, Version 2.0 (the 8 | * "License"); you may not use this file except in compliance 9 | * with the License. You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, 14 | * software distributed under the License is distributed on an 15 | * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16 | * KIND, either express or implied. See the License for the 17 | * specific language governing permissions and limitations 18 | * under the License. 19 | * 20 | */ 21 | 22 | module.exports = function () { 23 | // window.webkitRequestFileSystem and window.webkitResolveLocalFileSystemURL are available only in Chrome and 24 | // possibly a good flag to indicate that we're running in Chrome 25 | return window.webkitRequestFileSystem && window.webkitResolveLocalFileSystemURL; 26 | }; 27 | -------------------------------------------------------------------------------- /plugins/cordova-plugin-file/www/fileSystems.js: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Licensed to the Apache Software Foundation (ASF) under one 4 | * or more contributor license agreements. See the NOTICE file 5 | * distributed with this work for additional information 6 | * regarding copyright ownership. The ASF licenses this file 7 | * to you under the Apache License, Version 2.0 (the 8 | * "License"); you may not use this file except in compliance 9 | * with the License. You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, 14 | * software distributed under the License is distributed on an 15 | * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16 | * KIND, either express or implied. See the License for the 17 | * specific language governing permissions and limitations 18 | * under the License. 19 | * 20 | */ 21 | 22 | // Overridden by Android, BlackBerry 10 and iOS to populate fsMap. 23 | module.exports.getFs = function(name, callback) { 24 | callback(null); 25 | }; 26 | -------------------------------------------------------------------------------- /plugins/cordova-plugin-file/www/firefoxos/FileSystem.js: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Licensed to the Apache Software Foundation (ASF) under one 4 | * or more contributor license agreements. See the NOTICE file 5 | * distributed with this work for additional information 6 | * regarding copyright ownership. The ASF licenses this file 7 | * to you under the Apache License, Version 2.0 (the 8 | * "License"); you may not use this file except in compliance 9 | * with the License. You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, 14 | * software distributed under the License is distributed on an 15 | * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16 | * KIND, either express or implied. See the License for the 17 | * specific language governing permissions and limitations 18 | * under the License. 19 | * 20 | */ 21 | 22 | FILESYSTEM_PREFIX = "file:///"; 23 | 24 | module.exports = { 25 | __format__: function(fullPath) { 26 | return (FILESYSTEM_PREFIX + this.name + (fullPath[0] === '/' ? '' : '/') + FileSystem.encodeURIPath(fullPath)); 27 | } 28 | }; 29 | 30 | -------------------------------------------------------------------------------- /plugins/cordova-plugin-file/www/ios/FileSystem.js: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Licensed to the Apache Software Foundation (ASF) under one 4 | * or more contributor license agreements. See the NOTICE file 5 | * distributed with this work for additional information 6 | * regarding copyright ownership. The ASF licenses this file 7 | * to you under the Apache License, Version 2.0 (the 8 | * "License"); you may not use this file except in compliance 9 | * with the License. You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, 14 | * software distributed under the License is distributed on an 15 | * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16 | * KIND, either express or implied. See the License for the 17 | * specific language governing permissions and limitations 18 | * under the License. 19 | * 20 | */ 21 | 22 | FILESYSTEM_PROTOCOL = "cdvfile"; 23 | 24 | module.exports = { 25 | __format__: function(fullPath) { 26 | var path = ('/'+this.name+(fullPath[0]==='/'?'':'/')+FileSystem.encodeURIPath(fullPath)).replace('//','/'); 27 | return FILESYSTEM_PROTOCOL + '://localhost' + path; 28 | } 29 | }; 30 | 31 | -------------------------------------------------------------------------------- /plugins/cordova-plugin-file/www/osx/FileSystem.js: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Licensed to the Apache Software Foundation (ASF) under one 4 | * or more contributor license agreements. See the NOTICE file 5 | * distributed with this work for additional information 6 | * regarding copyright ownership. The ASF licenses this file 7 | * to you under the Apache License, Version 2.0 (the 8 | * "License"); you may not use this file except in compliance 9 | * with the License. You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, 14 | * software distributed under the License is distributed on an 15 | * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16 | * KIND, either express or implied. See the License for the 17 | * specific language governing permissions and limitations 18 | * under the License. 19 | * 20 | */ 21 | 22 | FILESYSTEM_PROTOCOL = "cdvfile"; 23 | 24 | module.exports = { 25 | __format__: function(fullPath) { 26 | var path = ('/'+this.name+(fullPath[0]==='/'?'':'/')+FileSystem.encodeURIPath(fullPath)).replace('//','/'); 27 | return FILESYSTEM_PROTOCOL + '://localhost' + path; 28 | } 29 | }; 30 | 31 | -------------------------------------------------------------------------------- /plugins/cordova-plugin-file/www/ubuntu/FileSystem.js: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Licensed to the Apache Software Foundation (ASF) under one 4 | * or more contributor license agreements. See the NOTICE file 5 | * distributed with this work for additional information 6 | * regarding copyright ownership. The ASF licenses this file 7 | * to you under the Apache License, Version 2.0 (the 8 | * "License"); you may not use this file except in compliance 9 | * with the License. You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, 14 | * software distributed under the License is distributed on an 15 | * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16 | * KIND, either express or implied. See the License for the 17 | * specific language governing permissions and limitations 18 | * under the License. 19 | * 20 | */ 21 | 22 | FILESYSTEM_PROTOCOL = "cdvfile"; 23 | 24 | module.exports = { 25 | __format__: function(fullPath) { 26 | if (this.name === 'content') { 27 | return 'content:/' + fullPath; 28 | } 29 | var path = ('/' + this.name + (fullPath[0] === '/' ? '' : '/') + FileSystem.encodeURIPath(fullPath)).replace('//','/'); 30 | 31 | return FILESYSTEM_PROTOCOL + '://localhost' + path; 32 | } 33 | }; 34 | 35 | -------------------------------------------------------------------------------- /plugins/cordova-plugin-geolocation/NOTICE: -------------------------------------------------------------------------------- 1 | Apache Cordova 2 | Copyright 2012 The Apache Software Foundation 3 | 4 | This product includes software developed at 5 | The Apache Software Foundation (http://www.apache.org/). 6 | -------------------------------------------------------------------------------- /plugins/cordova-plugin-geolocation/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "cordova-plugin-geolocation", 3 | "version": "2.1.0", 4 | "description": "Cordova Geolocation Plugin", 5 | "cordova": { 6 | "id": "cordova-plugin-geolocation", 7 | "platforms": [ 8 | "android", 9 | "amazon-fireos", 10 | "ios", 11 | "blackberry10", 12 | "ubuntu", 13 | "wp7", 14 | "wp8", 15 | "windows8", 16 | "windows", 17 | "firefoxos" 18 | ] 19 | }, 20 | "repository": { 21 | "type": "git", 22 | "url": "https://github.com/apache/cordova-plugin-geolocation" 23 | }, 24 | "keywords": [ 25 | "cordova", 26 | "geolocation", 27 | "ecosystem:cordova", 28 | "cordova-android", 29 | "cordova-amazon-fireos", 30 | "cordova-ios", 31 | "cordova-blackberry10", 32 | "cordova-ubuntu", 33 | "cordova-wp7", 34 | "cordova-wp8", 35 | "cordova-windows8", 36 | "cordova-windows", 37 | "cordova-firefoxos" 38 | ], 39 | "author": "Apache Software Foundation", 40 | "license": "Apache 2.0" 41 | } 42 | -------------------------------------------------------------------------------- /plugins/cordova-plugin-geolocation/src/wp/GeoLocation.cs: -------------------------------------------------------------------------------- 1 | /* 2 | Licensed under the Apache License, Version 2.0 (the "License"); 3 | you may not use this file except in compliance with the License. 4 | You may obtain a copy of the License at 5 | 6 | http://www.apache.org/licenses/LICENSE-2.0 7 | 8 | Unless required by applicable law or agreed to in writing, software 9 | distributed under the License is distributed on an "AS IS" BASIS, 10 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 11 | See the License for the specific language governing permissions and 12 | limitations under the License. 13 | */ 14 | 15 | using System; 16 | using System.Collections.Generic; 17 | using System.Runtime.Serialization; 18 | using System.Threading; 19 | using System.Device.Location; 20 | 21 | namespace WPCordovaClassLib.Cordova.Commands 22 | { 23 | /// 24 | /// This is a command stub, the browser provides the correct implementation. We use this to trigger the static analyzer that we require this permission 25 | /// 26 | public class Geolocation 27 | { 28 | /* Unreachable code, by design -jm */ 29 | private void triggerGeoInclusion() 30 | { 31 | new GeoCoordinateWatcher(); 32 | } 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /plugins/cordova-plugin-globalization/NOTICE: -------------------------------------------------------------------------------- 1 | Apache Cordova 2 | Copyright 2012 The Apache Software Foundation 3 | 4 | This product includes software developed at 5 | The Apache Software Foundation (http://www.apache.org/). 6 | 7 | This software includes software developed by Baptiste Lepilleur 8 | Copyright (C) 2007-2010 Baptiste Lepilleur 9 | 10 | This software includes software developed by Joerg Wiedenmann 11 | Copyright (C) 2006 Joerg Wiedenmann 12 | 13 | This software includes software developed by BlackBerry Ltd. 14 | Copyright (C) 2014 BlackBerry Ltd. 15 | -------------------------------------------------------------------------------- /plugins/cordova-plugin-globalization/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "cordova-plugin-globalization", 3 | "version": "1.0.3", 4 | "description": "Cordova Globalization Plugin", 5 | "cordova": { 6 | "id": "cordova-plugin-globalization", 7 | "platforms": [ 8 | "android", 9 | "amazon-fireos", 10 | "ubuntu", 11 | "firefoxos", 12 | "ios", 13 | "wp7", 14 | "wp8", 15 | "windows", 16 | "tizen", 17 | "blackberry10" 18 | ] 19 | }, 20 | "repository": { 21 | "type": "git", 22 | "url": "https://github.com/apache/cordova-plugin-globalization" 23 | }, 24 | "keywords": [ 25 | "cordova", 26 | "globalization", 27 | "ecosystem:cordova", 28 | "cordova-android", 29 | "cordova-amazon-fireos", 30 | "cordova-ubuntu", 31 | "cordova-firefoxos", 32 | "cordova-ios", 33 | "cordova-wp7", 34 | "cordova-wp8", 35 | "cordova-windows", 36 | "cordova-tizen", 37 | "cordova-blackberry10" 38 | ], 39 | "scripts": { 40 | "test": "npm run jshint", 41 | "jshint": "jshint www && jshint src && jshint tests" 42 | }, 43 | "author": "Apache Software Foundation", 44 | "license": "Apache-2.0", 45 | "devDependencies": { 46 | "jshint": "^2.6.0" 47 | } 48 | } 49 | -------------------------------------------------------------------------------- /plugins/cordova-plugin-globalization/src/blackberry10/native/device/libGlobalization.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/plugins/cordova-plugin-globalization/src/blackberry10/native/device/libGlobalization.so -------------------------------------------------------------------------------- /plugins/cordova-plugin-globalization/src/blackberry10/native/public/tokenizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/plugins/cordova-plugin-globalization/src/blackberry10/native/public/tokenizer.cpp -------------------------------------------------------------------------------- /plugins/cordova-plugin-globalization/src/blackberry10/native/public/tokenizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/plugins/cordova-plugin-globalization/src/blackberry10/native/public/tokenizer.h -------------------------------------------------------------------------------- /plugins/cordova-plugin-globalization/src/blackberry10/native/simulator/libGlobalization.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/plugins/cordova-plugin-globalization/src/blackberry10/native/simulator/libGlobalization.so -------------------------------------------------------------------------------- /plugins/cordova-plugin-globalization/src/windows/GlobalizationProxy.winmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/plugins/cordova-plugin-globalization/src/windows/GlobalizationProxy.winmd -------------------------------------------------------------------------------- /plugins/cordova-plugin-globalization/src/windows/GlobalizationProxy/GlobalizationProxy/.npmignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | /obj/ 3 | *.suo -------------------------------------------------------------------------------- /plugins/cordova-plugin-globalization/src/windows/GlobalizationProxy/GlobalizationProxy/Globalization/SettableCultureInfo.cs: -------------------------------------------------------------------------------- 1 | /* 2 | Licensed under the Apache License, Version 2.0 (the "License"); 3 | you may not use this file except in compliance with the License. 4 | You may obtain a copy of the License at 5 | 6 | http://www.apache.org/licenses/LICENSE-2.0 7 | 8 | Unless required by applicable law or agreed to in writing, software 9 | distributed under the License is distributed on an "AS IS" BASIS, 10 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 11 | See the License for the specific language governing permissions and 12 | limitations under the License. 13 | */ 14 | 15 | using System.Globalization; 16 | 17 | namespace GlobalizationProxy.Globalization 18 | { 19 | class SettableCultureInfo : CultureInfo 20 | { 21 | public SettableCultureInfo(string name) 22 | : base(name) 23 | { 24 | } 25 | 26 | public static void SubstituteCurrentLocale(string name) 27 | { 28 | CurrentCulture = new SettableCultureInfo(name); 29 | } 30 | 31 | /// 32 | /// Overriding System.Globalization.CurrentCulture here 33 | /// 34 | public static new SettableCultureInfo CurrentCulture { get; set; } 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /plugins/cordova-plugin-globalization/tests/plugin.xml: -------------------------------------------------------------------------------- 1 | 2 | 20 | 21 | 24 | Cordova Globalization Plugin Tests 25 | Apache 2.0 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /plugins/cordova-plugin-inappbrowser/NOTICE: -------------------------------------------------------------------------------- 1 | Apache Cordova 2 | Copyright 2012 The Apache Software Foundation 3 | 4 | This product includes software developed at 5 | The Apache Software Foundation (http://www.apache.org/). 6 | -------------------------------------------------------------------------------- /plugins/cordova-plugin-inappbrowser/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "cordova-plugin-inappbrowser", 3 | "version": "1.3.0", 4 | "description": "Cordova InAppBrowser Plugin", 5 | "cordova": { 6 | "id": "cordova-plugin-inappbrowser", 7 | "platforms": [ 8 | "android", 9 | "amazon-fireos", 10 | "ubuntu", 11 | "ios", 12 | "wp7", 13 | "wp8", 14 | "windows8", 15 | "windows", 16 | "firefoxos" 17 | ] 18 | }, 19 | "repository": { 20 | "type": "git", 21 | "url": "https://github.com/apache/cordova-plugin-inappbrowser" 22 | }, 23 | "keywords": [ 24 | "cordova", 25 | "in", 26 | "app", 27 | "browser", 28 | "inappbrowser", 29 | "ecosystem:cordova", 30 | "cordova-android", 31 | "cordova-amazon-fireos", 32 | "cordova-ubuntu", 33 | "cordova-ios", 34 | "cordova-wp7", 35 | "cordova-wp8", 36 | "cordova-windows8", 37 | "cordova-windows", 38 | "cordova-firefoxos" 39 | ], 40 | "engines": [ 41 | { 42 | "name": "cordova", 43 | "version": ">=3.1.0" 44 | } 45 | ], 46 | "author": "Apache Software Foundation", 47 | "license": "Apache-2.0" 48 | } 49 | -------------------------------------------------------------------------------- /plugins/cordova-plugin-inappbrowser/src/android/res/drawable-hdpi/ic_action_next_item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/plugins/cordova-plugin-inappbrowser/src/android/res/drawable-hdpi/ic_action_next_item.png -------------------------------------------------------------------------------- /plugins/cordova-plugin-inappbrowser/src/android/res/drawable-hdpi/ic_action_previous_item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/plugins/cordova-plugin-inappbrowser/src/android/res/drawable-hdpi/ic_action_previous_item.png -------------------------------------------------------------------------------- /plugins/cordova-plugin-inappbrowser/src/android/res/drawable-hdpi/ic_action_remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/plugins/cordova-plugin-inappbrowser/src/android/res/drawable-hdpi/ic_action_remove.png -------------------------------------------------------------------------------- /plugins/cordova-plugin-inappbrowser/src/android/res/drawable-mdpi/ic_action_next_item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/plugins/cordova-plugin-inappbrowser/src/android/res/drawable-mdpi/ic_action_next_item.png -------------------------------------------------------------------------------- /plugins/cordova-plugin-inappbrowser/src/android/res/drawable-mdpi/ic_action_previous_item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/plugins/cordova-plugin-inappbrowser/src/android/res/drawable-mdpi/ic_action_previous_item.png -------------------------------------------------------------------------------- /plugins/cordova-plugin-inappbrowser/src/android/res/drawable-mdpi/ic_action_remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/plugins/cordova-plugin-inappbrowser/src/android/res/drawable-mdpi/ic_action_remove.png -------------------------------------------------------------------------------- /plugins/cordova-plugin-inappbrowser/src/android/res/drawable-xhdpi/ic_action_next_item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/plugins/cordova-plugin-inappbrowser/src/android/res/drawable-xhdpi/ic_action_next_item.png -------------------------------------------------------------------------------- /plugins/cordova-plugin-inappbrowser/src/android/res/drawable-xhdpi/ic_action_previous_item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/plugins/cordova-plugin-inappbrowser/src/android/res/drawable-xhdpi/ic_action_previous_item.png -------------------------------------------------------------------------------- /plugins/cordova-plugin-inappbrowser/src/android/res/drawable-xhdpi/ic_action_remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/plugins/cordova-plugin-inappbrowser/src/android/res/drawable-xhdpi/ic_action_remove.png -------------------------------------------------------------------------------- /plugins/cordova-plugin-inappbrowser/src/android/res/drawable-xxhdpi/ic_action_next_item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/plugins/cordova-plugin-inappbrowser/src/android/res/drawable-xxhdpi/ic_action_next_item.png -------------------------------------------------------------------------------- /plugins/cordova-plugin-inappbrowser/src/android/res/drawable-xxhdpi/ic_action_previous_item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/plugins/cordova-plugin-inappbrowser/src/android/res/drawable-xxhdpi/ic_action_previous_item.png -------------------------------------------------------------------------------- /plugins/cordova-plugin-inappbrowser/src/android/res/drawable-xxhdpi/ic_action_remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/plugins/cordova-plugin-inappbrowser/src/android/res/drawable-xxhdpi/ic_action_remove.png -------------------------------------------------------------------------------- /plugins/cordova-plugin-inappbrowser/src/ubuntu/InAppBrowser_escapeScript.js: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Licensed to the Apache Software Foundation (ASF) under one 4 | * or more contributor license agreements. See the NOTICE file 5 | * distributed with this work for additional information 6 | * regarding copyright ownership. The ASF licenses this file 7 | * to you under the Apache License, Version 2.0 (the 8 | * "License"); you may not use this file except in compliance 9 | * with the License. You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, 14 | * software distributed under the License is distributed on an 15 | * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16 | * KIND, either express or implied. See the License for the 17 | * specific language governing permissions and limitations 18 | * under the License. 19 | * 20 | */ 21 | 22 | oxide.addMessageHandler("EXECUTE", function(msg) { 23 | var code = msg.args.code; 24 | try { 25 | msg.reply({result: eval(code)}); 26 | } catch(e) { 27 | msg.error("Code threw exception: \"" + e + "\""); 28 | } 29 | }); 30 | -------------------------------------------------------------------------------- /plugins/cordova-plugin-inappbrowser/src/ubuntu/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/plugins/cordova-plugin-inappbrowser/src/ubuntu/close.png -------------------------------------------------------------------------------- /plugins/cordova-plugin-inappbrowser/tests/resources/inject.css: -------------------------------------------------------------------------------- 1 | /* 2 | * Licensed to the Apache Software Foundation (ASF) under one 3 | * or more contributor license agreements. See the NOTICE file 4 | * distributed with this work for additional information 5 | * regarding copyright ownership. The ASF licenses this file 6 | * to you under the Apache License, Version 2.0 (the 7 | * "License"); you may not use this file except in compliance 8 | * with the License. You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, 13 | * software distributed under the License is distributed on an 14 | * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 15 | * KIND, either express or implied. See the License for the 16 | * specific language governing permissions and limitations 17 | * under the License. 18 | */ 19 | #style-update-file { 20 | display: block !important; 21 | } 22 | -------------------------------------------------------------------------------- /plugins/cordova-plugin-inappbrowser/tests/resources/inject.js: -------------------------------------------------------------------------------- 1 | /* 2 | * Licensed to the Apache Software Foundation (ASF) under one 3 | * or more contributor license agreements. See the NOTICE file 4 | * distributed with this work for additional information 5 | * regarding copyright ownership. The ASF licenses this file 6 | * to you under the Apache License, Version 2.0 (the 7 | * "License"); you may not use this file except in compliance 8 | * with the License. You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, 13 | * software distributed under the License is distributed on an 14 | * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 15 | * KIND, either express or implied. See the License for the 16 | * specific language governing permissions and limitations 17 | * under the License. 18 | */ 19 | var d = document.getElementById("header") 20 | d.innerHTML = "Script file successfully injected"; 21 | -------------------------------------------------------------------------------- /plugins/cordova-plugin-inappbrowser/tests/resources/local.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/plugins/cordova-plugin-inappbrowser/tests/resources/local.pdf -------------------------------------------------------------------------------- /plugins/cordova-plugin-media-capture/NOTICE: -------------------------------------------------------------------------------- 1 | Apache Cordova 2 | Copyright 2012 The Apache Software Foundation 3 | 4 | This product includes software developed at 5 | The Apache Software Foundation (http://www.apache.org/). 6 | -------------------------------------------------------------------------------- /plugins/cordova-plugin-media-capture/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "cordova-plugin-media-capture", 3 | "version": "1.2.0", 4 | "description": "Cordova Media Capture Plugin", 5 | "cordova": { 6 | "id": "cordova-plugin-media-capture", 7 | "platforms": [ 8 | "android", 9 | "amazon-fireos", 10 | "ubuntu", 11 | "ios", 12 | "blackberry10", 13 | "wp7", 14 | "wp8", 15 | "windows8", 16 | "windows" 17 | ] 18 | }, 19 | "repository": { 20 | "type": "git", 21 | "url": "https://github.com/apache/cordova-plugin-media-capture" 22 | }, 23 | "keywords": [ 24 | "cordova", 25 | "media", 26 | "capture", 27 | "ecosystem:cordova", 28 | "cordova-android", 29 | "cordova-amazon-fireos", 30 | "cordova-ubuntu", 31 | "cordova-ios", 32 | "cordova-blackberry10", 33 | "cordova-wp7", 34 | "cordova-wp8", 35 | "cordova-windows8", 36 | "cordova-windows" 37 | ], 38 | "peerDependencies": { 39 | "cordova-plugin-file": "^3.0.0" 40 | }, 41 | "author": "Apache Software Foundation", 42 | "license": "Apache 2.0" 43 | } 44 | -------------------------------------------------------------------------------- /plugins/cordova-plugin-media-capture/src/ios/CDVCapture.bundle/controls_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/plugins/cordova-plugin-media-capture/src/ios/CDVCapture.bundle/controls_bg.png -------------------------------------------------------------------------------- /plugins/cordova-plugin-media-capture/src/ios/CDVCapture.bundle/controls_bg@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/plugins/cordova-plugin-media-capture/src/ios/CDVCapture.bundle/controls_bg@2x.png -------------------------------------------------------------------------------- /plugins/cordova-plugin-media-capture/src/ios/CDVCapture.bundle/controls_bg@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/plugins/cordova-plugin-media-capture/src/ios/CDVCapture.bundle/controls_bg@2x~ipad.png -------------------------------------------------------------------------------- /plugins/cordova-plugin-media-capture/src/ios/CDVCapture.bundle/controls_bg~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/plugins/cordova-plugin-media-capture/src/ios/CDVCapture.bundle/controls_bg~ipad.png -------------------------------------------------------------------------------- /plugins/cordova-plugin-media-capture/src/ios/CDVCapture.bundle/microphone-568h@2x~iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/plugins/cordova-plugin-media-capture/src/ios/CDVCapture.bundle/microphone-568h@2x~iphone.png -------------------------------------------------------------------------------- /plugins/cordova-plugin-media-capture/src/ios/CDVCapture.bundle/microphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/plugins/cordova-plugin-media-capture/src/ios/CDVCapture.bundle/microphone.png -------------------------------------------------------------------------------- /plugins/cordova-plugin-media-capture/src/ios/CDVCapture.bundle/microphone@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/plugins/cordova-plugin-media-capture/src/ios/CDVCapture.bundle/microphone@2x.png -------------------------------------------------------------------------------- /plugins/cordova-plugin-media-capture/src/ios/CDVCapture.bundle/microphone@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/plugins/cordova-plugin-media-capture/src/ios/CDVCapture.bundle/microphone@2x~ipad.png -------------------------------------------------------------------------------- /plugins/cordova-plugin-media-capture/src/ios/CDVCapture.bundle/microphone~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/plugins/cordova-plugin-media-capture/src/ios/CDVCapture.bundle/microphone~ipad.png -------------------------------------------------------------------------------- /plugins/cordova-plugin-media-capture/src/ios/CDVCapture.bundle/record_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/plugins/cordova-plugin-media-capture/src/ios/CDVCapture.bundle/record_button.png -------------------------------------------------------------------------------- /plugins/cordova-plugin-media-capture/src/ios/CDVCapture.bundle/record_button@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/plugins/cordova-plugin-media-capture/src/ios/CDVCapture.bundle/record_button@2x.png -------------------------------------------------------------------------------- /plugins/cordova-plugin-media-capture/src/ios/CDVCapture.bundle/record_button@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/plugins/cordova-plugin-media-capture/src/ios/CDVCapture.bundle/record_button@2x~ipad.png -------------------------------------------------------------------------------- /plugins/cordova-plugin-media-capture/src/ios/CDVCapture.bundle/record_button~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/plugins/cordova-plugin-media-capture/src/ios/CDVCapture.bundle/record_button~ipad.png -------------------------------------------------------------------------------- /plugins/cordova-plugin-media-capture/src/ios/CDVCapture.bundle/recording_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/plugins/cordova-plugin-media-capture/src/ios/CDVCapture.bundle/recording_bg.png -------------------------------------------------------------------------------- /plugins/cordova-plugin-media-capture/src/ios/CDVCapture.bundle/recording_bg@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/plugins/cordova-plugin-media-capture/src/ios/CDVCapture.bundle/recording_bg@2x.png -------------------------------------------------------------------------------- /plugins/cordova-plugin-media-capture/src/ios/CDVCapture.bundle/recording_bg@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/plugins/cordova-plugin-media-capture/src/ios/CDVCapture.bundle/recording_bg@2x~ipad.png -------------------------------------------------------------------------------- /plugins/cordova-plugin-media-capture/src/ios/CDVCapture.bundle/recording_bg~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/plugins/cordova-plugin-media-capture/src/ios/CDVCapture.bundle/recording_bg~ipad.png -------------------------------------------------------------------------------- /plugins/cordova-plugin-media-capture/src/ios/CDVCapture.bundle/stop_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/plugins/cordova-plugin-media-capture/src/ios/CDVCapture.bundle/stop_button.png -------------------------------------------------------------------------------- /plugins/cordova-plugin-media-capture/src/ios/CDVCapture.bundle/stop_button@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/plugins/cordova-plugin-media-capture/src/ios/CDVCapture.bundle/stop_button@2x.png -------------------------------------------------------------------------------- /plugins/cordova-plugin-media-capture/src/ios/CDVCapture.bundle/stop_button@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/plugins/cordova-plugin-media-capture/src/ios/CDVCapture.bundle/stop_button@2x~ipad.png -------------------------------------------------------------------------------- /plugins/cordova-plugin-media-capture/src/ios/CDVCapture.bundle/stop_button~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/plugins/cordova-plugin-media-capture/src/ios/CDVCapture.bundle/stop_button~ipad.png -------------------------------------------------------------------------------- /plugins/cordova-plugin-media-capture/src/ubuntu/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/plugins/cordova-plugin-media-capture/src/ubuntu/back.png -------------------------------------------------------------------------------- /plugins/cordova-plugin-media-capture/src/ubuntu/microphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/plugins/cordova-plugin-media-capture/src/ubuntu/microphone.png -------------------------------------------------------------------------------- /plugins/cordova-plugin-media-capture/src/ubuntu/record_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/plugins/cordova-plugin-media-capture/src/ubuntu/record_off.png -------------------------------------------------------------------------------- /plugins/cordova-plugin-media-capture/src/ubuntu/record_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/plugins/cordova-plugin-media-capture/src/ubuntu/record_on.png -------------------------------------------------------------------------------- /plugins/cordova-plugin-media-capture/src/ubuntu/shoot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/plugins/cordova-plugin-media-capture/src/ubuntu/shoot.png -------------------------------------------------------------------------------- /plugins/cordova-plugin-media-capture/src/ubuntu/toolbar-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/plugins/cordova-plugin-media-capture/src/ubuntu/toolbar-left.png -------------------------------------------------------------------------------- /plugins/cordova-plugin-media-capture/src/ubuntu/toolbar-middle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/plugins/cordova-plugin-media-capture/src/ubuntu/toolbar-middle.png -------------------------------------------------------------------------------- /plugins/cordova-plugin-media-capture/src/ubuntu/toolbar-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/plugins/cordova-plugin-media-capture/src/ubuntu/toolbar-right.png -------------------------------------------------------------------------------- /plugins/cordova-plugin-media-capture/www/CaptureAudioOptions.js: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Licensed to the Apache Software Foundation (ASF) under one 4 | * or more contributor license agreements. See the NOTICE file 5 | * distributed with this work for additional information 6 | * regarding copyright ownership. The ASF licenses this file 7 | * to you under the Apache License, Version 2.0 (the 8 | * "License"); you may not use this file except in compliance 9 | * with the License. You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, 14 | * software distributed under the License is distributed on an 15 | * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16 | * KIND, either express or implied. See the License for the 17 | * specific language governing permissions and limitations 18 | * under the License. 19 | * 20 | */ 21 | 22 | /** 23 | * Encapsulates all audio capture operation configuration options. 24 | */ 25 | var CaptureAudioOptions = function(){ 26 | // Upper limit of sound clips user can record. Value must be equal or greater than 1. 27 | this.limit = 1; 28 | // Maximum duration of a single sound clip in seconds. 29 | this.duration = 0; 30 | }; 31 | 32 | module.exports = CaptureAudioOptions; 33 | -------------------------------------------------------------------------------- /plugins/cordova-plugin-media-capture/www/CaptureImageOptions.js: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Licensed to the Apache Software Foundation (ASF) under one 4 | * or more contributor license agreements. See the NOTICE file 5 | * distributed with this work for additional information 6 | * regarding copyright ownership. The ASF licenses this file 7 | * to you under the Apache License, Version 2.0 (the 8 | * "License"); you may not use this file except in compliance 9 | * with the License. You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, 14 | * software distributed under the License is distributed on an 15 | * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16 | * KIND, either express or implied. See the License for the 17 | * specific language governing permissions and limitations 18 | * under the License. 19 | * 20 | */ 21 | 22 | /** 23 | * Encapsulates all image capture operation configuration options. 24 | */ 25 | var CaptureImageOptions = function(){ 26 | // Upper limit of images user can take. Value must be equal or greater than 1. 27 | this.limit = 1; 28 | }; 29 | 30 | module.exports = CaptureImageOptions; 31 | -------------------------------------------------------------------------------- /plugins/cordova-plugin-media/NOTICE: -------------------------------------------------------------------------------- 1 | Apache Cordova 2 | Copyright 2012 The Apache Software Foundation 3 | 4 | This product includes software developed at 5 | The Apache Software Foundation (http://www.apache.org/). 6 | -------------------------------------------------------------------------------- /plugins/cordova-plugin-media/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "cordova-plugin-media", 3 | "version": "2.2.0", 4 | "description": "Cordova Media Plugin", 5 | "cordova": { 6 | "id": "cordova-plugin-media", 7 | "platforms": [ 8 | "android", 9 | "amazon-fireos", 10 | "ubuntu", 11 | "ios", 12 | "blackberry10", 13 | "wp7", 14 | "wp8", 15 | "windows8", 16 | "windows", 17 | "tizen" 18 | ] 19 | }, 20 | "repository": { 21 | "type": "git", 22 | "url": "https://github.com/apache/cordova-plugin-media" 23 | }, 24 | "keywords": [ 25 | "cordova", 26 | "media", 27 | "ecosystem:cordova", 28 | "cordova-android", 29 | "cordova-amazon-fireos", 30 | "cordova-ubuntu", 31 | "cordova-ios", 32 | "cordova-blackberry10", 33 | "cordova-wp7", 34 | "cordova-wp8", 35 | "cordova-windows8", 36 | "cordova-windows", 37 | "cordova-tizen" 38 | ], 39 | "peerDependencies": { 40 | "cordova-plugin-file": "^4.0.0" 41 | }, 42 | "author": "Apache Software Foundation", 43 | "license": "Apache-2.0" 44 | } 45 | -------------------------------------------------------------------------------- /plugins/cordova-plugin-media/tests/plugin.xml: -------------------------------------------------------------------------------- 1 | 2 | 20 | 21 | 26 | Cordova Media Plugin Tests 27 | Apache 2.0 28 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /plugins/cordova-plugin-network-information/NOTICE: -------------------------------------------------------------------------------- 1 | Apache Cordova 2 | Copyright 2012 The Apache Software Foundation 3 | 4 | This product includes software developed at 5 | The Apache Software Foundation (http://www.apache.org/). 6 | 7 | This product includes software developed by Apple Inc. License can be found in the header of the affected files. (src/ios/CDVReachability.h, src/ios/CDVReachability.m) 8 | 9 | -------------------------------------------------------------------------------- /plugins/cordova-plugin-network-information/src/ios/CDVConnection.h: -------------------------------------------------------------------------------- 1 | /* 2 | Licensed to the Apache Software Foundation (ASF) under one 3 | or more contributor license agreements. See the NOTICE file 4 | distributed with this work for additional information 5 | regarding copyright ownership. The ASF licenses this file 6 | to you under the Apache License, Version 2.0 (the 7 | "License"); you may not use this file except in compliance 8 | with the License. You may obtain a copy of the License at 9 | 10 | http://www.apache.org/licenses/LICENSE-2.0 11 | 12 | Unless required by applicable law or agreed to in writing, 13 | software distributed under the License is distributed on an 14 | "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 15 | KIND, either express or implied. See the License for the 16 | specific language governing permissions and limitations 17 | under the License. 18 | */ 19 | 20 | #import 21 | #import 22 | #import "CDVReachability.h" 23 | 24 | @interface CDVConnection : CDVPlugin { 25 | NSString* type; 26 | NSString* _callbackId; 27 | 28 | CDVReachability* internetReach; 29 | } 30 | 31 | @property (copy) NSString* connectionType; 32 | @property (strong) CDVReachability* internetReach; 33 | 34 | @end 35 | -------------------------------------------------------------------------------- /plugins/cordova-plugin-network-information/tests/plugin.xml: -------------------------------------------------------------------------------- 1 | 2 | 20 | 21 | 25 | Cordova Network Information Plugin Tests 26 | Apache 2.0 27 | 28 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /plugins/cordova-plugin-network-information/www/Connection.js: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Licensed to the Apache Software Foundation (ASF) under one 4 | * or more contributor license agreements. See the NOTICE file 5 | * distributed with this work for additional information 6 | * regarding copyright ownership. The ASF licenses this file 7 | * to you under the Apache License, Version 2.0 (the 8 | * "License"); you may not use this file except in compliance 9 | * with the License. You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, 14 | * software distributed under the License is distributed on an 15 | * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16 | * KIND, either express or implied. See the License for the 17 | * specific language governing permissions and limitations 18 | * under the License. 19 | * 20 | */ 21 | 22 | /** 23 | * Network status 24 | */ 25 | module.exports = { 26 | UNKNOWN: "unknown", 27 | ETHERNET: "ethernet", 28 | WIFI: "wifi", 29 | CELL_2G: "2g", 30 | CELL_3G: "3g", 31 | CELL_4G: "4g", 32 | CELL:"cellular", 33 | NONE: "none" 34 | }; 35 | -------------------------------------------------------------------------------- /plugins/cordova-plugin-splashscreen/NOTICE: -------------------------------------------------------------------------------- 1 | Apache Cordova 2 | Copyright 2012 The Apache Software Foundation 3 | 4 | This product includes software developed at 5 | The Apache Software Foundation (http://www.apache.org/). 6 | -------------------------------------------------------------------------------- /plugins/cordova-plugin-splashscreen/src/blackberry10/index.js: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 2013 Research In Motion Limited. 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License"); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | /* global PluginResult */ 18 | 19 | module.exports = { 20 | show: function (success, fail, args, env) { 21 | var result = new PluginResult(args, env); 22 | result.error("Not supported on platform", false); 23 | }, 24 | 25 | hide: function (success, fail, args, env) { 26 | var result = new PluginResult(args, env); 27 | window.qnx.webplatform.getApplication().windowVisible = true; 28 | result.ok(undefined, false); 29 | } 30 | }; 31 | -------------------------------------------------------------------------------- /plugins/cordova-plugin-splashscreen/src/ios/CDVViewController+SplashScreen.h: -------------------------------------------------------------------------------- 1 | /* 2 | Licensed to the Apache Software Foundation (ASF) under one 3 | or more contributor license agreements. See the NOTICE file 4 | distributed with this work for additional information 5 | regarding copyright ownership. The ASF licenses this file 6 | to you under the Apache License, Version 2.0 (the 7 | "License"); you may not use this file except in compliance 8 | with the License. You may obtain a copy of the License at 9 | 10 | http://www.apache.org/licenses/LICENSE-2.0 11 | 12 | Unless required by applicable law or agreed to in writing, 13 | software distributed under the License is distributed on an 14 | "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 15 | KIND, either express or implied. See the License for the 16 | specific language governing permissions and limitations 17 | under the License. 18 | */ 19 | 20 | #import 21 | 22 | @interface CDVViewController (SplashScreen) 23 | 24 | @property (nonatomic, assign) BOOL enabledAutorotation; 25 | @property (nonatomic, readonly) BOOL shouldAutorotateDefaultValue; 26 | 27 | 28 | @end 29 | -------------------------------------------------------------------------------- /plugins/cordova-plugin-splashscreen/tests/ios/CDVSplashScreenTest.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /plugins/cordova-plugin-splashscreen/tests/ios/CDVSplashScreenTest/.npmignore: -------------------------------------------------------------------------------- 1 | build -------------------------------------------------------------------------------- /plugins/cordova-plugin-splashscreen/tests/ios/CDVSplashScreenTest/CDVSplashScreenTest.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /plugins/cordova-plugin-splashscreen/tests/ios/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "cordova-plugin-splashscreen-test-ios", 3 | "version": "1.0.0", 4 | "description": "iOS Unit Tests for Splashscreen Plugin", 5 | "author": "Apache Software Foundation", 6 | "license": "Apache Version 2.0", 7 | "dependencies": { 8 | "cordova-ios": "*" 9 | }, 10 | "scripts": { 11 | "test": "xcodebuild test -workspace CDVSplashScreenTest.xcworkspace -scheme CDVSplashScreenLibTests -destination 'platform=iOS Simulator,name=iPhone 5' CONFIGURATION_BUILD_DIR='/tmp' HEADER_SEARCH_PATHS='$(OBJROOT)/UninstalledProducts/$(PLATFORM_NAME)/include'" 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /plugins/cordova-plugin-splashscreen/tests/plugin.xml: -------------------------------------------------------------------------------- 1 | 2 | 20 | 21 | 24 | Cordova Splashscreen Plugin Tests 25 | Apache 2.0 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /plugins/cordova-plugin-splashscreen/www/splashscreen.js: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Licensed to the Apache Software Foundation (ASF) under one 4 | * or more contributor license agreements. See the NOTICE file 5 | * distributed with this work for additional information 6 | * regarding copyright ownership. The ASF licenses this file 7 | * to you under the Apache License, Version 2.0 (the 8 | * "License"); you may not use this file except in compliance 9 | * with the License. You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, 14 | * software distributed under the License is distributed on an 15 | * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16 | * KIND, either express or implied. See the License for the 17 | * specific language governing permissions and limitations 18 | * under the License. 19 | * 20 | */ 21 | 22 | var exec = require('cordova/exec'); 23 | 24 | var splashscreen = { 25 | show:function() { 26 | exec(null, null, "SplashScreen", "show", []); 27 | }, 28 | hide:function() { 29 | exec(null, null, "SplashScreen", "hide", []); 30 | } 31 | }; 32 | 33 | module.exports = splashscreen; 34 | -------------------------------------------------------------------------------- /plugins/cordova-plugin-statusbar/NOTICE: -------------------------------------------------------------------------------- 1 | Apache Cordova 2 | Copyright 2012 The Apache Software Foundation 3 | 4 | This product includes software developed at 5 | The Apache Software Foundation (http://www.apache.org/). 6 | -------------------------------------------------------------------------------- /plugins/cordova-plugin-statusbar/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "cordova-plugin-statusbar", 3 | "version": "2.1.3", 4 | "description": "Cordova StatusBar Plugin", 5 | "cordova": { 6 | "id": "cordova-plugin-statusbar", 7 | "platforms": [ 8 | "android", 9 | "ios", 10 | "wp7", 11 | "wp8", 12 | "windows" 13 | ] 14 | }, 15 | "repository": { 16 | "type": "git", 17 | "url": "https://github.com/apache/cordova-plugin-statusbar" 18 | }, 19 | "keywords": [ 20 | "cordova", 21 | "statusbar", 22 | "ecosystem:cordova", 23 | "cordova-android", 24 | "cordova-ios", 25 | "cordova-wp7", 26 | "cordova-wp8", 27 | "cordova-windows" 28 | ], 29 | "scripts": { 30 | "test": "npm run jshint", 31 | "jshint": "node node_modules/jshint/bin/jshint www && node node_modules/jshint/bin/jshint src && node node_modules/jshint/bin/jshint tests" 32 | }, 33 | "engines": [ 34 | { 35 | "name": "cordova", 36 | "version": ">=3.0.0" 37 | } 38 | ], 39 | "author": "Apache Software Foundation", 40 | "license": "Apache 2.0", 41 | "devDependencies": { 42 | "jshint": "^2.6.0" 43 | } 44 | } 45 | -------------------------------------------------------------------------------- /plugins/cordova-plugin-vibration/NOTICE: -------------------------------------------------------------------------------- 1 | Apache Cordova 2 | Copyright 2012 The Apache Software Foundation 3 | 4 | This product includes software developed at 5 | The Apache Software Foundation (http://www.apache.org/). 6 | 7 | This product includes software developed by Joerg Wiedenmann under the zlib license (http://www.gzip.org/zlib/zlib_license.html) 8 | -------------------------------------------------------------------------------- /plugins/cordova-plugin-vibration/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "cordova-plugin-vibration", 3 | "version": "2.1.1", 4 | "description": "Cordova Vibration Plugin", 5 | "cordova": { 6 | "id": "cordova-plugin-vibration", 7 | "platforms": [ 8 | "firefoxos", 9 | "wp7", 10 | "wp8", 11 | "android", 12 | "amazon-fireos", 13 | "ubuntu", 14 | "ios", 15 | "blackberry10", 16 | "tizen" 17 | ] 18 | }, 19 | "repository": { 20 | "type": "git", 21 | "url": "https://github.com/apache/cordova-plugin-vibration" 22 | }, 23 | "keywords": [ 24 | "cordova", 25 | "vibration", 26 | "ecosystem:cordova", 27 | "cordova-firefoxos", 28 | "cordova-wp7", 29 | "cordova-wp8", 30 | "cordova-android", 31 | "cordova-amazon-fireos", 32 | "cordova-ubuntu", 33 | "cordova-ios", 34 | "cordova-blackberry10", 35 | "cordova-tizen" 36 | ], 37 | "scripts": { 38 | "test": "npm run jshint", 39 | "jshint": "jshint www && jshint src && jshint tests" 40 | }, 41 | "author": "Apache Software Foundation", 42 | "license": "Apache-2.0", 43 | "devDependencies": { 44 | "jshint": "^2.6.0" 45 | } 46 | } 47 | -------------------------------------------------------------------------------- /plugins/cordova-plugin-vibration/src/blackberry10/native/device/libVibration.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/plugins/cordova-plugin-vibration/src/blackberry10/native/device/libVibration.so -------------------------------------------------------------------------------- /plugins/cordova-plugin-vibration/src/blackberry10/native/public/tokenizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/plugins/cordova-plugin-vibration/src/blackberry10/native/public/tokenizer.cpp -------------------------------------------------------------------------------- /plugins/cordova-plugin-vibration/src/blackberry10/native/public/tokenizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/plugins/cordova-plugin-vibration/src/blackberry10/native/public/tokenizer.h -------------------------------------------------------------------------------- /plugins/cordova-plugin-vibration/src/blackberry10/native/simulator/libVibration.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/plugins/cordova-plugin-vibration/src/blackberry10/native/simulator/libVibration.so -------------------------------------------------------------------------------- /plugins/cordova-plugin-vibration/src/browser/Vibration.js: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Licensed to the Apache Software Foundation (ASF) under one 4 | * or more contributor license agreements. See the NOTICE file 5 | * distributed with this work for additional information 6 | * regarding copyright ownership. The ASF licenses this file 7 | * to you under the Apache License, Version 2.0 (the 8 | * "License"); you may not use this file except in compliance 9 | * with the License. You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, 14 | * software distributed under the License is distributed on an 15 | * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16 | * KIND, either express or implied. See the License for the 17 | * specific language governing permissions and limitations 18 | * under the License. 19 | * 20 | */ 21 | 22 | module.exports = { 23 | vibrate: function(success, fail, milliseconds) { 24 | console.log('Vibration is not supported'); 25 | return false; 26 | } 27 | }; 28 | -------------------------------------------------------------------------------- /plugins/cordova-plugin-vibration/src/firefoxos/VibrationProxy.js: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Licensed to the Apache Software Foundation (ASF) under one 4 | * or more contributor license agreements. See the NOTICE file 5 | * distributed with this work for additional information 6 | * regarding copyright ownership. The ASF licenses this file 7 | * to you under the Apache License, Version 2.0 (the 8 | * "License"); you may not use this file except in compliance 9 | * with the License. You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, 14 | * software distributed under the License is distributed on an 15 | * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16 | * KIND, either express or implied. See the License for the 17 | * specific language governing permissions and limitations 18 | * under the License. 19 | * 20 | */ 21 | 22 | module.exports = { 23 | 24 | vibrate: function(success, fail, milliseconds) { 25 | if (navigator.notification.vibrate) { 26 | navigator.vibrate(milliseconds); 27 | } else { 28 | console.log ("cordova/plugin/firefoxos/vibration, vibrate API does not exist"); 29 | } 30 | } 31 | }; 32 | 33 | require("cordova/exec/proxy").add("Vibration", module.exports); -------------------------------------------------------------------------------- /plugins/cordova-plugin-vibration/src/ios/CDVVibration.h: -------------------------------------------------------------------------------- 1 | /* 2 | Licensed to the Apache Software Foundation (ASF) under one 3 | or more contributor license agreements. See the NOTICE file 4 | distributed with this work for additional information 5 | regarding copyright ownership. The ASF licenses this file 6 | to you under the Apache License, Version 2.0 (the 7 | "License"); you may not use this file except in compliance 8 | with the License. You may obtain a copy of the License at 9 | 10 | http://www.apache.org/licenses/LICENSE-2.0 11 | 12 | Unless required by applicable law or agreed to in writing, 13 | software distributed under the License is distributed on an 14 | "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 15 | KIND, either express or implied. See the License for the 16 | specific language governing permissions and limitations 17 | under the License. 18 | */ 19 | 20 | #import 21 | #import 22 | #import 23 | #import 24 | 25 | @interface CDVVibration : CDVPlugin {} 26 | 27 | - (void)vibrate:(CDVInvokedUrlCommand*)command; 28 | 29 | @end 30 | -------------------------------------------------------------------------------- /plugins/cordova-plugin-vibration/src/ios/CDVVibration.m: -------------------------------------------------------------------------------- 1 | /* 2 | Licensed to the Apache Software Foundation (ASF) under one 3 | or more contributor license agreements. See the NOTICE file 4 | distributed with this work for additional information 5 | regarding copyright ownership. The ASF licenses this file 6 | to you under the Apache License, Version 2.0 (the 7 | "License"); you may not use this file except in compliance 8 | with the License. You may obtain a copy of the License at 9 | 10 | http://www.apache.org/licenses/LICENSE-2.0 11 | 12 | Unless required by applicable law or agreed to in writing, 13 | software distributed under the License is distributed on an 14 | "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 15 | KIND, either express or implied. See the License for the 16 | specific language governing permissions and limitations 17 | under the License. 18 | */ 19 | 20 | #import "CDVVibration.h" 21 | 22 | @implementation CDVVibration 23 | 24 | - (void)vibrate:(CDVInvokedUrlCommand*)command 25 | { 26 | AudioServicesPlaySystemSound(kSystemSoundID_Vibrate); 27 | } 28 | 29 | @end 30 | -------------------------------------------------------------------------------- /plugins/cordova-plugin-vibration/src/tizen/VibrationProxy.js: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Licensed to the Apache Software Foundation (ASF) under one 4 | * or more contributor license agreements. See the NOTICE file 5 | * distributed with this work for additional information 6 | * regarding copyright ownership. The ASF licenses this file 7 | * to you under the Apache License, Version 2.0 (the 8 | * "License"); you may not use this file except in compliance 9 | * with the License. You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, 14 | * software distributed under the License is distributed on an 15 | * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16 | * KIND, either express or implied. See the License for the 17 | * specific language governing permissions and limitations 18 | * under the License. 19 | * 20 | */ 21 | 22 | module.exports = { 23 | vibrate: function(milliseconds) { 24 | if (navigator.vibrate) { 25 | navigator.vibrate(milliseconds); 26 | } 27 | } 28 | }; 29 | 30 | require("cordova/tizen/commandProxy").add("Vibration", module.exports); 31 | -------------------------------------------------------------------------------- /plugins/cordova-plugin-vibration/src/windows/Vibration/.npmignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | /obj/ 3 | *.suo -------------------------------------------------------------------------------- /plugins/cordova-plugin-vibration/www/blackberry10/vibrate.js: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Licensed to the Apache Software Foundation (ASF) under one 4 | * or more contributor license agreements. See the NOTICE file 5 | * distributed with this work for additional information 6 | * regarding copyright ownership. The ASF licenses this file 7 | * to you under the Apache License, Version 2.0 (the 8 | * "License"); you may not use this file except in compliance 9 | * with the License. You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, 14 | * software distributed under the License is distributed on an 15 | * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16 | * KIND, either express or implied. See the License for the 17 | * specific language governing permissions and limitations 18 | * under the License. 19 | * 20 | */ 21 | 22 | var vibrate = function(duration) { 23 | navigator.vibrate(duration); 24 | }; 25 | 26 | module.exports = vibrate; 27 | -------------------------------------------------------------------------------- /plugins/cordova-plugin-whitelist/NOTICE: -------------------------------------------------------------------------------- 1 | Apache Cordova 2 | Copyright 2012 The Apache Software Foundation 3 | 4 | This product includes software developed at 5 | The Apache Software Foundation (http://www.apache.org/). 6 | -------------------------------------------------------------------------------- /plugins/cordova-plugin-whitelist/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "cordova-plugin-whitelist", 3 | "version": "1.2.2", 4 | "description": "Cordova Whitelist Plugin", 5 | "cordova": { 6 | "platforms": [ 7 | "android" 8 | ] 9 | }, 10 | "repository": { 11 | "type": "git", 12 | "url": "https://github.com/apache/cordova-plugin-whitelist" 13 | }, 14 | "keywords": [ 15 | "cordova", 16 | "whitelist", 17 | "ecosystem:cordova", 18 | "cordova-android" 19 | ], 20 | "engines": [ 21 | { 22 | "name": "cordova-android", 23 | "version": ">=4.0.0" 24 | } 25 | ], 26 | "author": "Apache Software Foundation", 27 | "license": "Apache 2.0" 28 | } 29 | -------------------------------------------------------------------------------- /www/images/logo_phonegap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/www/images/logo_phonegap.png -------------------------------------------------------------------------------- /www/images/logo_vue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/www/images/logo_vue.png -------------------------------------------------------------------------------- /www/res/.pgbomit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/www/res/.pgbomit -------------------------------------------------------------------------------- /www/res/icon/android/drawable-hdpi-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/www/res/icon/android/drawable-hdpi-icon.png -------------------------------------------------------------------------------- /www/res/icon/android/drawable-ldpi-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/www/res/icon/android/drawable-ldpi-icon.png -------------------------------------------------------------------------------- /www/res/icon/android/drawable-mdpi-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/www/res/icon/android/drawable-mdpi-icon.png -------------------------------------------------------------------------------- /www/res/icon/android/drawable-xhdpi-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/www/res/icon/android/drawable-xhdpi-icon.png -------------------------------------------------------------------------------- /www/res/icon/android/drawable-xxhdpi-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/www/res/icon/android/drawable-xxhdpi-icon.png -------------------------------------------------------------------------------- /www/res/icon/android/drawable-xxxhdpi-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/www/res/icon/android/drawable-xxxhdpi-icon.png -------------------------------------------------------------------------------- /www/res/icon/ios/icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/www/res/icon/ios/icon-40.png -------------------------------------------------------------------------------- /www/res/icon/ios/icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/www/res/icon/ios/icon-40@2x.png -------------------------------------------------------------------------------- /www/res/icon/ios/icon-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/www/res/icon/ios/icon-50.png -------------------------------------------------------------------------------- /www/res/icon/ios/icon-50@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/www/res/icon/ios/icon-50@2x.png -------------------------------------------------------------------------------- /www/res/icon/ios/icon-60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/www/res/icon/ios/icon-60.png -------------------------------------------------------------------------------- /www/res/icon/ios/icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/www/res/icon/ios/icon-60@2x.png -------------------------------------------------------------------------------- /www/res/icon/ios/icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/www/res/icon/ios/icon-60@3x.png -------------------------------------------------------------------------------- /www/res/icon/ios/icon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/www/res/icon/ios/icon-72.png -------------------------------------------------------------------------------- /www/res/icon/ios/icon-72@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/www/res/icon/ios/icon-72@2x.png -------------------------------------------------------------------------------- /www/res/icon/ios/icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/www/res/icon/ios/icon-76.png -------------------------------------------------------------------------------- /www/res/icon/ios/icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/www/res/icon/ios/icon-76@2x.png -------------------------------------------------------------------------------- /www/res/icon/ios/icon-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/www/res/icon/ios/icon-small.png -------------------------------------------------------------------------------- /www/res/icon/ios/icon-small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/www/res/icon/ios/icon-small@2x.png -------------------------------------------------------------------------------- /www/res/icon/ios/icon-small@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/www/res/icon/ios/icon-small@3x.png -------------------------------------------------------------------------------- /www/res/icon/ios/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/www/res/icon/ios/icon.png -------------------------------------------------------------------------------- /www/res/icon/ios/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/www/res/icon/ios/icon@2x.png -------------------------------------------------------------------------------- /www/res/icon/windows/Square150x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/www/res/icon/windows/Square150x150Logo.scale-100.png -------------------------------------------------------------------------------- /www/res/icon/windows/Square150x150Logo.scale-240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/www/res/icon/windows/Square150x150Logo.scale-240.png -------------------------------------------------------------------------------- /www/res/icon/windows/Square30x30Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/www/res/icon/windows/Square30x30Logo.scale-100.png -------------------------------------------------------------------------------- /www/res/icon/windows/Square310x310Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/www/res/icon/windows/Square310x310Logo.scale-100.png -------------------------------------------------------------------------------- /www/res/icon/windows/Square44x44Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/www/res/icon/windows/Square44x44Logo.scale-100.png -------------------------------------------------------------------------------- /www/res/icon/windows/Square44x44Logo.scale-240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/www/res/icon/windows/Square44x44Logo.scale-240.png -------------------------------------------------------------------------------- /www/res/icon/windows/Square70x70Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/www/res/icon/windows/Square70x70Logo.scale-100.png -------------------------------------------------------------------------------- /www/res/icon/windows/Square71x71Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/www/res/icon/windows/Square71x71Logo.scale-100.png -------------------------------------------------------------------------------- /www/res/icon/windows/Square71x71Logo.scale-240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/www/res/icon/windows/Square71x71Logo.scale-240.png -------------------------------------------------------------------------------- /www/res/icon/windows/StoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/www/res/icon/windows/StoreLogo.scale-100.png -------------------------------------------------------------------------------- /www/res/icon/windows/StoreLogo.scale-240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/www/res/icon/windows/StoreLogo.scale-240.png -------------------------------------------------------------------------------- /www/res/icon/windows/Wide310x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/www/res/icon/windows/Wide310x150Logo.scale-100.png -------------------------------------------------------------------------------- /www/res/icon/windows/Wide310x150Logo.scale-240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/www/res/icon/windows/Wide310x150Logo.scale-240.png -------------------------------------------------------------------------------- /www/res/icon/wp8/ApplicationIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/www/res/icon/wp8/ApplicationIcon.png -------------------------------------------------------------------------------- /www/res/icon/wp8/Background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/www/res/icon/wp8/Background.png -------------------------------------------------------------------------------- /www/res/screen/android/drawable-land-hdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/www/res/screen/android/drawable-land-hdpi-screen.png -------------------------------------------------------------------------------- /www/res/screen/android/drawable-land-ldpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/www/res/screen/android/drawable-land-ldpi-screen.png -------------------------------------------------------------------------------- /www/res/screen/android/drawable-land-mdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/www/res/screen/android/drawable-land-mdpi-screen.png -------------------------------------------------------------------------------- /www/res/screen/android/drawable-land-xhdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/www/res/screen/android/drawable-land-xhdpi-screen.png -------------------------------------------------------------------------------- /www/res/screen/android/drawable-land-xxhdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/www/res/screen/android/drawable-land-xxhdpi-screen.png -------------------------------------------------------------------------------- /www/res/screen/android/drawable-land-xxxhdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/www/res/screen/android/drawable-land-xxxhdpi-screen.png -------------------------------------------------------------------------------- /www/res/screen/android/drawable-port-hdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/www/res/screen/android/drawable-port-hdpi-screen.png -------------------------------------------------------------------------------- /www/res/screen/android/drawable-port-ldpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/www/res/screen/android/drawable-port-ldpi-screen.png -------------------------------------------------------------------------------- /www/res/screen/android/drawable-port-mdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/www/res/screen/android/drawable-port-mdpi-screen.png -------------------------------------------------------------------------------- /www/res/screen/android/drawable-port-xhdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/www/res/screen/android/drawable-port-xhdpi-screen.png -------------------------------------------------------------------------------- /www/res/screen/android/drawable-port-xxhdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/www/res/screen/android/drawable-port-xxhdpi-screen.png -------------------------------------------------------------------------------- /www/res/screen/android/drawable-port-xxxhdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/www/res/screen/android/drawable-port-xxxhdpi-screen.png -------------------------------------------------------------------------------- /www/res/screen/ios/Default-568h@2x~iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/www/res/screen/ios/Default-568h@2x~iphone.png -------------------------------------------------------------------------------- /www/res/screen/ios/Default-667h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/www/res/screen/ios/Default-667h.png -------------------------------------------------------------------------------- /www/res/screen/ios/Default-736h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/www/res/screen/ios/Default-736h.png -------------------------------------------------------------------------------- /www/res/screen/ios/Default-Landscape-736h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/www/res/screen/ios/Default-Landscape-736h.png -------------------------------------------------------------------------------- /www/res/screen/ios/Default-Landscape@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/www/res/screen/ios/Default-Landscape@2x~ipad.png -------------------------------------------------------------------------------- /www/res/screen/ios/Default-Landscape~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/www/res/screen/ios/Default-Landscape~ipad.png -------------------------------------------------------------------------------- /www/res/screen/ios/Default-Portrait@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/www/res/screen/ios/Default-Portrait@2x~ipad.png -------------------------------------------------------------------------------- /www/res/screen/ios/Default-Portrait~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/www/res/screen/ios/Default-Portrait~ipad.png -------------------------------------------------------------------------------- /www/res/screen/ios/Default@2x~iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/www/res/screen/ios/Default@2x~iphone.png -------------------------------------------------------------------------------- /www/res/screen/ios/Default~iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/www/res/screen/ios/Default~iphone.png -------------------------------------------------------------------------------- /www/res/screen/windows/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/www/res/screen/windows/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /www/res/screen/windows/SplashScreenPhone.scale-240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/www/res/screen/windows/SplashScreenPhone.scale-240.png -------------------------------------------------------------------------------- /www/res/screen/wp8/screen-portrait.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leMaur/phonegap-vueify/03712ae809025706ed8ad9bfb3d65d6e2d1ddc36/www/res/screen/wp8/screen-portrait.jpg -------------------------------------------------------------------------------- /www/src/App.vue: -------------------------------------------------------------------------------- 1 | 4 | 5 | 14 | 15 | 52 | -------------------------------------------------------------------------------- /www/src/main.js: -------------------------------------------------------------------------------- 1 | import Vue from 'vue' 2 | import App from './App.vue' 3 | 4 | /* eslint-disable no-new */ 5 | var Phonegap = { 6 | 7 | // Application Constructor 8 | initialize() { 9 | this.bindEvents() 10 | }, 11 | 12 | // Bind Event Listeners 13 | // 14 | // Bind any events that are required on startup. Common events are: 15 | // 'load', 'deviceready', 'offline', and 'online'. 16 | bindEvents() { 17 | document.addEventListener('deviceready', this.onDeviceReady, false) 18 | }, 19 | 20 | // deviceready Event Handler 21 | // 22 | // The scope of 'this' is the event. In order to call the 'receivedEvent' 23 | // function, we must explicitly call 'Phonegap.receivedEvent(...);' 24 | onDeviceReady() { 25 | Phonegap.receivedEvent() 26 | }, 27 | 28 | // Update DOM on a Received Event 29 | receivedEvent() { 30 | 31 | console.log('The device is ready!') 32 | 33 | // Load Vue instance 34 | new Vue({ 35 | el: 'body', 36 | components: { App } 37 | }) 38 | } 39 | } 40 | 41 | 42 | Phonegap.initialize() 43 | -------------------------------------------------------------------------------- /www/test/unit/Hello.spec.js: -------------------------------------------------------------------------------- 1 | /* global describe, it, expect */ 2 | 3 | import Vue from 'vue' 4 | import Hello from '../../src/components/Hello.vue' 5 | 6 | describe('Hello.vue', () => { 7 | it('should render correct contents', () => { 8 | const vm = new Vue({ 9 | template: '
', 10 | components: { Hello } 11 | }).$mount() 12 | expect(vm.$el.querySelector('.Hello .Lead.Lead-phonegap').textContent).toBe('Phonegap') 13 | expect(vm.$el.querySelector('.Hello .Lead.Lead-spacer').textContent).toBe('meets') 14 | expect(vm.$el.querySelector('.Hello .Lead.Lead-vue').textContent).toBe('Vue.js') 15 | }) 16 | }) 17 | 18 | // also see example testing a component with mocks at 19 | // https://github.com/vuejs/vueify-example/blob/master/test/unit/a.spec.js#L22-L43 20 | --------------------------------------------------------------------------------