├── .gitignore ├── LICENSE ├── Podfile_sample ├── README.md ├── _imgs ├── bridge-header.png ├── contacts-setting.png ├── install.png ├── ios-template.png ├── location.png ├── mic.png ├── plist.png ├── plist1.png ├── pods-workspace.png ├── pods.png ├── run1.png ├── run2.png ├── step-vc.png └── step1.png ├── core-podspecs ├── Cordova.podspec ├── cordova-plugin-camera.podspec ├── cordova-plugin-contacts.podspec ├── cordova-plugin-device-motion.podspec ├── cordova-plugin-device-orientation.podspec ├── cordova-plugin-device.podspec ├── cordova-plugin-file-transfer.podspec ├── cordova-plugin-file.podspec ├── cordova-plugin-geolocation.podspec ├── cordova-plugin-globalization.podspec ├── cordova-plugin-inappbrowser.podspec ├── cordova-plugin-media-capture.podspec ├── cordova-plugin-network-information.podspec ├── cordova-plugin-splashscreen.podspec ├── cordova-plugin-statusbar.podspec ├── cordova-plugin-vibration.podspec ├── cordova-plugin-wkwebview-engine.podspec ├── phonegap-plugin-contentsync.podspec └── phonegap-plugin-push.podspec ├── phonegap-ios-template.podspec └── resources ├── config.xml └── www ├── cordova.js ├── cordova_plugins.js ├── css └── index.css ├── img └── logo.png ├── index.html ├── js └── index.js └── plugins ├── cordova-plugin-camera └── www │ ├── Camera.js │ ├── CameraConstants.js │ ├── CameraPopoverOptions.js │ └── ios │ └── CameraPopoverHandle.js ├── cordova-plugin-console └── www │ ├── console-via-logger.js │ └── logger.js ├── cordova-plugin-contacts └── 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 └── www │ ├── Acceleration.js │ └── accelerometer.js ├── cordova-plugin-device-orientation └── www │ ├── CompassError.js │ ├── CompassHeading.js │ └── compass.js ├── cordova-plugin-device └── www │ └── device.js ├── cordova-plugin-file-transfer └── www │ ├── FileTransfer.js │ └── FileTransferError.js ├── cordova-plugin-file └── 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 │ └── isChrome.js │ ├── fileSystemPaths.js │ ├── fileSystems-roots.js │ ├── fileSystems.js │ ├── ios │ └── FileSystem.js │ ├── requestFileSystem.js │ └── resolveLocalFileSystemURI.js ├── cordova-plugin-geolocation └── www │ ├── Coordinates.js │ ├── Position.js │ ├── PositionError.js │ └── geolocation.js ├── cordova-plugin-globalization └── www │ ├── GlobalizationError.js │ └── globalization.js ├── cordova-plugin-inappbrowser └── www │ └── inappbrowser.js ├── cordova-plugin-media-capture └── www │ ├── CaptureAudioOptions.js │ ├── CaptureError.js │ ├── CaptureImageOptions.js │ ├── CaptureVideoOptions.js │ ├── MediaFile.js │ ├── MediaFileData.js │ └── capture.js ├── cordova-plugin-network-information └── www │ ├── Connection.js │ └── network.js ├── cordova-plugin-splashscreen └── www │ └── splashscreen.js ├── cordova-plugin-statusbar └── www │ └── statusbar.js ├── cordova-plugin-vibration └── www │ └── vibration.js ├── cordova-plugin-wkwebview-engine └── src │ └── www │ └── ios │ └── ios-wkwebview-exec.js └── phonegap-plugin-push └── www └── push.js /.gitignore: -------------------------------------------------------------------------------- 1 | # Created by .ignore support plugin (hsz.mobi) -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-webview-ios/HEAD/LICENSE -------------------------------------------------------------------------------- /Podfile_sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-webview-ios/HEAD/Podfile_sample -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-webview-ios/HEAD/README.md -------------------------------------------------------------------------------- /_imgs/bridge-header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-webview-ios/HEAD/_imgs/bridge-header.png -------------------------------------------------------------------------------- /_imgs/contacts-setting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-webview-ios/HEAD/_imgs/contacts-setting.png -------------------------------------------------------------------------------- /_imgs/install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-webview-ios/HEAD/_imgs/install.png -------------------------------------------------------------------------------- /_imgs/ios-template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-webview-ios/HEAD/_imgs/ios-template.png -------------------------------------------------------------------------------- /_imgs/location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-webview-ios/HEAD/_imgs/location.png -------------------------------------------------------------------------------- /_imgs/mic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-webview-ios/HEAD/_imgs/mic.png -------------------------------------------------------------------------------- /_imgs/plist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-webview-ios/HEAD/_imgs/plist.png -------------------------------------------------------------------------------- /_imgs/plist1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-webview-ios/HEAD/_imgs/plist1.png -------------------------------------------------------------------------------- /_imgs/pods-workspace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-webview-ios/HEAD/_imgs/pods-workspace.png -------------------------------------------------------------------------------- /_imgs/pods.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-webview-ios/HEAD/_imgs/pods.png -------------------------------------------------------------------------------- /_imgs/run1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-webview-ios/HEAD/_imgs/run1.png -------------------------------------------------------------------------------- /_imgs/run2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-webview-ios/HEAD/_imgs/run2.png -------------------------------------------------------------------------------- /_imgs/step-vc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-webview-ios/HEAD/_imgs/step-vc.png -------------------------------------------------------------------------------- /_imgs/step1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-webview-ios/HEAD/_imgs/step1.png -------------------------------------------------------------------------------- /core-podspecs/Cordova.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-webview-ios/HEAD/core-podspecs/Cordova.podspec -------------------------------------------------------------------------------- /core-podspecs/cordova-plugin-camera.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-webview-ios/HEAD/core-podspecs/cordova-plugin-camera.podspec -------------------------------------------------------------------------------- /core-podspecs/cordova-plugin-contacts.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-webview-ios/HEAD/core-podspecs/cordova-plugin-contacts.podspec -------------------------------------------------------------------------------- /core-podspecs/cordova-plugin-device-motion.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-webview-ios/HEAD/core-podspecs/cordova-plugin-device-motion.podspec -------------------------------------------------------------------------------- /core-podspecs/cordova-plugin-device-orientation.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-webview-ios/HEAD/core-podspecs/cordova-plugin-device-orientation.podspec -------------------------------------------------------------------------------- /core-podspecs/cordova-plugin-device.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-webview-ios/HEAD/core-podspecs/cordova-plugin-device.podspec -------------------------------------------------------------------------------- /core-podspecs/cordova-plugin-file-transfer.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-webview-ios/HEAD/core-podspecs/cordova-plugin-file-transfer.podspec -------------------------------------------------------------------------------- /core-podspecs/cordova-plugin-file.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-webview-ios/HEAD/core-podspecs/cordova-plugin-file.podspec -------------------------------------------------------------------------------- /core-podspecs/cordova-plugin-geolocation.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-webview-ios/HEAD/core-podspecs/cordova-plugin-geolocation.podspec -------------------------------------------------------------------------------- /core-podspecs/cordova-plugin-globalization.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-webview-ios/HEAD/core-podspecs/cordova-plugin-globalization.podspec -------------------------------------------------------------------------------- /core-podspecs/cordova-plugin-inappbrowser.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-webview-ios/HEAD/core-podspecs/cordova-plugin-inappbrowser.podspec -------------------------------------------------------------------------------- /core-podspecs/cordova-plugin-media-capture.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-webview-ios/HEAD/core-podspecs/cordova-plugin-media-capture.podspec -------------------------------------------------------------------------------- /core-podspecs/cordova-plugin-network-information.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-webview-ios/HEAD/core-podspecs/cordova-plugin-network-information.podspec -------------------------------------------------------------------------------- /core-podspecs/cordova-plugin-splashscreen.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-webview-ios/HEAD/core-podspecs/cordova-plugin-splashscreen.podspec -------------------------------------------------------------------------------- /core-podspecs/cordova-plugin-statusbar.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-webview-ios/HEAD/core-podspecs/cordova-plugin-statusbar.podspec -------------------------------------------------------------------------------- /core-podspecs/cordova-plugin-vibration.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-webview-ios/HEAD/core-podspecs/cordova-plugin-vibration.podspec -------------------------------------------------------------------------------- /core-podspecs/cordova-plugin-wkwebview-engine.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-webview-ios/HEAD/core-podspecs/cordova-plugin-wkwebview-engine.podspec -------------------------------------------------------------------------------- /core-podspecs/phonegap-plugin-contentsync.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-webview-ios/HEAD/core-podspecs/phonegap-plugin-contentsync.podspec -------------------------------------------------------------------------------- /core-podspecs/phonegap-plugin-push.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-webview-ios/HEAD/core-podspecs/phonegap-plugin-push.podspec -------------------------------------------------------------------------------- /phonegap-ios-template.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-webview-ios/HEAD/phonegap-ios-template.podspec -------------------------------------------------------------------------------- /resources/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-webview-ios/HEAD/resources/config.xml -------------------------------------------------------------------------------- /resources/www/cordova.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-webview-ios/HEAD/resources/www/cordova.js -------------------------------------------------------------------------------- /resources/www/cordova_plugins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-webview-ios/HEAD/resources/www/cordova_plugins.js -------------------------------------------------------------------------------- /resources/www/css/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-webview-ios/HEAD/resources/www/css/index.css -------------------------------------------------------------------------------- /resources/www/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-webview-ios/HEAD/resources/www/img/logo.png -------------------------------------------------------------------------------- /resources/www/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-webview-ios/HEAD/resources/www/index.html -------------------------------------------------------------------------------- /resources/www/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-webview-ios/HEAD/resources/www/js/index.js -------------------------------------------------------------------------------- /resources/www/plugins/cordova-plugin-camera/www/Camera.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-webview-ios/HEAD/resources/www/plugins/cordova-plugin-camera/www/Camera.js -------------------------------------------------------------------------------- /resources/www/plugins/cordova-plugin-camera/www/CameraConstants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-webview-ios/HEAD/resources/www/plugins/cordova-plugin-camera/www/CameraConstants.js -------------------------------------------------------------------------------- /resources/www/plugins/cordova-plugin-camera/www/CameraPopoverOptions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-webview-ios/HEAD/resources/www/plugins/cordova-plugin-camera/www/CameraPopoverOptions.js -------------------------------------------------------------------------------- /resources/www/plugins/cordova-plugin-camera/www/ios/CameraPopoverHandle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-webview-ios/HEAD/resources/www/plugins/cordova-plugin-camera/www/ios/CameraPopoverHandle.js -------------------------------------------------------------------------------- /resources/www/plugins/cordova-plugin-console/www/console-via-logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-webview-ios/HEAD/resources/www/plugins/cordova-plugin-console/www/console-via-logger.js -------------------------------------------------------------------------------- /resources/www/plugins/cordova-plugin-console/www/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-webview-ios/HEAD/resources/www/plugins/cordova-plugin-console/www/logger.js -------------------------------------------------------------------------------- /resources/www/plugins/cordova-plugin-contacts/www/Contact.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-webview-ios/HEAD/resources/www/plugins/cordova-plugin-contacts/www/Contact.js -------------------------------------------------------------------------------- /resources/www/plugins/cordova-plugin-contacts/www/ContactAddress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-webview-ios/HEAD/resources/www/plugins/cordova-plugin-contacts/www/ContactAddress.js -------------------------------------------------------------------------------- /resources/www/plugins/cordova-plugin-contacts/www/ContactError.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-webview-ios/HEAD/resources/www/plugins/cordova-plugin-contacts/www/ContactError.js -------------------------------------------------------------------------------- /resources/www/plugins/cordova-plugin-contacts/www/ContactField.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-webview-ios/HEAD/resources/www/plugins/cordova-plugin-contacts/www/ContactField.js -------------------------------------------------------------------------------- /resources/www/plugins/cordova-plugin-contacts/www/ContactFieldType.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-webview-ios/HEAD/resources/www/plugins/cordova-plugin-contacts/www/ContactFieldType.js -------------------------------------------------------------------------------- /resources/www/plugins/cordova-plugin-contacts/www/ContactFindOptions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-webview-ios/HEAD/resources/www/plugins/cordova-plugin-contacts/www/ContactFindOptions.js -------------------------------------------------------------------------------- /resources/www/plugins/cordova-plugin-contacts/www/ContactName.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-webview-ios/HEAD/resources/www/plugins/cordova-plugin-contacts/www/ContactName.js -------------------------------------------------------------------------------- /resources/www/plugins/cordova-plugin-contacts/www/ContactOrganization.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-webview-ios/HEAD/resources/www/plugins/cordova-plugin-contacts/www/ContactOrganization.js -------------------------------------------------------------------------------- /resources/www/plugins/cordova-plugin-contacts/www/contacts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-webview-ios/HEAD/resources/www/plugins/cordova-plugin-contacts/www/contacts.js -------------------------------------------------------------------------------- /resources/www/plugins/cordova-plugin-contacts/www/ios/Contact.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-webview-ios/HEAD/resources/www/plugins/cordova-plugin-contacts/www/ios/Contact.js -------------------------------------------------------------------------------- /resources/www/plugins/cordova-plugin-contacts/www/ios/contacts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-webview-ios/HEAD/resources/www/plugins/cordova-plugin-contacts/www/ios/contacts.js -------------------------------------------------------------------------------- /resources/www/plugins/cordova-plugin-device-motion/www/Acceleration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-webview-ios/HEAD/resources/www/plugins/cordova-plugin-device-motion/www/Acceleration.js -------------------------------------------------------------------------------- /resources/www/plugins/cordova-plugin-device-motion/www/accelerometer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-webview-ios/HEAD/resources/www/plugins/cordova-plugin-device-motion/www/accelerometer.js -------------------------------------------------------------------------------- /resources/www/plugins/cordova-plugin-device-orientation/www/CompassError.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-webview-ios/HEAD/resources/www/plugins/cordova-plugin-device-orientation/www/CompassError.js -------------------------------------------------------------------------------- /resources/www/plugins/cordova-plugin-device-orientation/www/CompassHeading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-webview-ios/HEAD/resources/www/plugins/cordova-plugin-device-orientation/www/CompassHeading.js -------------------------------------------------------------------------------- /resources/www/plugins/cordova-plugin-device-orientation/www/compass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-webview-ios/HEAD/resources/www/plugins/cordova-plugin-device-orientation/www/compass.js -------------------------------------------------------------------------------- /resources/www/plugins/cordova-plugin-device/www/device.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-webview-ios/HEAD/resources/www/plugins/cordova-plugin-device/www/device.js -------------------------------------------------------------------------------- /resources/www/plugins/cordova-plugin-file-transfer/www/FileTransfer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-webview-ios/HEAD/resources/www/plugins/cordova-plugin-file-transfer/www/FileTransfer.js -------------------------------------------------------------------------------- /resources/www/plugins/cordova-plugin-file-transfer/www/FileTransferError.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-webview-ios/HEAD/resources/www/plugins/cordova-plugin-file-transfer/www/FileTransferError.js -------------------------------------------------------------------------------- /resources/www/plugins/cordova-plugin-file/www/DirectoryEntry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-webview-ios/HEAD/resources/www/plugins/cordova-plugin-file/www/DirectoryEntry.js -------------------------------------------------------------------------------- /resources/www/plugins/cordova-plugin-file/www/DirectoryReader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-webview-ios/HEAD/resources/www/plugins/cordova-plugin-file/www/DirectoryReader.js -------------------------------------------------------------------------------- /resources/www/plugins/cordova-plugin-file/www/Entry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-webview-ios/HEAD/resources/www/plugins/cordova-plugin-file/www/Entry.js -------------------------------------------------------------------------------- /resources/www/plugins/cordova-plugin-file/www/File.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-webview-ios/HEAD/resources/www/plugins/cordova-plugin-file/www/File.js -------------------------------------------------------------------------------- /resources/www/plugins/cordova-plugin-file/www/FileEntry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-webview-ios/HEAD/resources/www/plugins/cordova-plugin-file/www/FileEntry.js -------------------------------------------------------------------------------- /resources/www/plugins/cordova-plugin-file/www/FileError.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-webview-ios/HEAD/resources/www/plugins/cordova-plugin-file/www/FileError.js -------------------------------------------------------------------------------- /resources/www/plugins/cordova-plugin-file/www/FileReader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-webview-ios/HEAD/resources/www/plugins/cordova-plugin-file/www/FileReader.js -------------------------------------------------------------------------------- /resources/www/plugins/cordova-plugin-file/www/FileSystem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-webview-ios/HEAD/resources/www/plugins/cordova-plugin-file/www/FileSystem.js -------------------------------------------------------------------------------- /resources/www/plugins/cordova-plugin-file/www/FileUploadOptions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-webview-ios/HEAD/resources/www/plugins/cordova-plugin-file/www/FileUploadOptions.js -------------------------------------------------------------------------------- /resources/www/plugins/cordova-plugin-file/www/FileUploadResult.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-webview-ios/HEAD/resources/www/plugins/cordova-plugin-file/www/FileUploadResult.js -------------------------------------------------------------------------------- /resources/www/plugins/cordova-plugin-file/www/FileWriter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-webview-ios/HEAD/resources/www/plugins/cordova-plugin-file/www/FileWriter.js -------------------------------------------------------------------------------- /resources/www/plugins/cordova-plugin-file/www/Flags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-webview-ios/HEAD/resources/www/plugins/cordova-plugin-file/www/Flags.js -------------------------------------------------------------------------------- /resources/www/plugins/cordova-plugin-file/www/LocalFileSystem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-webview-ios/HEAD/resources/www/plugins/cordova-plugin-file/www/LocalFileSystem.js -------------------------------------------------------------------------------- /resources/www/plugins/cordova-plugin-file/www/Metadata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-webview-ios/HEAD/resources/www/plugins/cordova-plugin-file/www/Metadata.js -------------------------------------------------------------------------------- /resources/www/plugins/cordova-plugin-file/www/ProgressEvent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-webview-ios/HEAD/resources/www/plugins/cordova-plugin-file/www/ProgressEvent.js -------------------------------------------------------------------------------- /resources/www/plugins/cordova-plugin-file/www/browser/isChrome.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-webview-ios/HEAD/resources/www/plugins/cordova-plugin-file/www/browser/isChrome.js -------------------------------------------------------------------------------- /resources/www/plugins/cordova-plugin-file/www/fileSystemPaths.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-webview-ios/HEAD/resources/www/plugins/cordova-plugin-file/www/fileSystemPaths.js -------------------------------------------------------------------------------- /resources/www/plugins/cordova-plugin-file/www/fileSystems-roots.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-webview-ios/HEAD/resources/www/plugins/cordova-plugin-file/www/fileSystems-roots.js -------------------------------------------------------------------------------- /resources/www/plugins/cordova-plugin-file/www/fileSystems.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-webview-ios/HEAD/resources/www/plugins/cordova-plugin-file/www/fileSystems.js -------------------------------------------------------------------------------- /resources/www/plugins/cordova-plugin-file/www/ios/FileSystem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-webview-ios/HEAD/resources/www/plugins/cordova-plugin-file/www/ios/FileSystem.js -------------------------------------------------------------------------------- /resources/www/plugins/cordova-plugin-file/www/requestFileSystem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-webview-ios/HEAD/resources/www/plugins/cordova-plugin-file/www/requestFileSystem.js -------------------------------------------------------------------------------- /resources/www/plugins/cordova-plugin-file/www/resolveLocalFileSystemURI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-webview-ios/HEAD/resources/www/plugins/cordova-plugin-file/www/resolveLocalFileSystemURI.js -------------------------------------------------------------------------------- /resources/www/plugins/cordova-plugin-geolocation/www/Coordinates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-webview-ios/HEAD/resources/www/plugins/cordova-plugin-geolocation/www/Coordinates.js -------------------------------------------------------------------------------- /resources/www/plugins/cordova-plugin-geolocation/www/Position.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-webview-ios/HEAD/resources/www/plugins/cordova-plugin-geolocation/www/Position.js -------------------------------------------------------------------------------- /resources/www/plugins/cordova-plugin-geolocation/www/PositionError.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-webview-ios/HEAD/resources/www/plugins/cordova-plugin-geolocation/www/PositionError.js -------------------------------------------------------------------------------- /resources/www/plugins/cordova-plugin-geolocation/www/geolocation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-webview-ios/HEAD/resources/www/plugins/cordova-plugin-geolocation/www/geolocation.js -------------------------------------------------------------------------------- /resources/www/plugins/cordova-plugin-globalization/www/GlobalizationError.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-webview-ios/HEAD/resources/www/plugins/cordova-plugin-globalization/www/GlobalizationError.js -------------------------------------------------------------------------------- /resources/www/plugins/cordova-plugin-globalization/www/globalization.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-webview-ios/HEAD/resources/www/plugins/cordova-plugin-globalization/www/globalization.js -------------------------------------------------------------------------------- /resources/www/plugins/cordova-plugin-inappbrowser/www/inappbrowser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-webview-ios/HEAD/resources/www/plugins/cordova-plugin-inappbrowser/www/inappbrowser.js -------------------------------------------------------------------------------- /resources/www/plugins/cordova-plugin-media-capture/www/CaptureAudioOptions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-webview-ios/HEAD/resources/www/plugins/cordova-plugin-media-capture/www/CaptureAudioOptions.js -------------------------------------------------------------------------------- /resources/www/plugins/cordova-plugin-media-capture/www/CaptureError.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-webview-ios/HEAD/resources/www/plugins/cordova-plugin-media-capture/www/CaptureError.js -------------------------------------------------------------------------------- /resources/www/plugins/cordova-plugin-media-capture/www/CaptureImageOptions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-webview-ios/HEAD/resources/www/plugins/cordova-plugin-media-capture/www/CaptureImageOptions.js -------------------------------------------------------------------------------- /resources/www/plugins/cordova-plugin-media-capture/www/CaptureVideoOptions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-webview-ios/HEAD/resources/www/plugins/cordova-plugin-media-capture/www/CaptureVideoOptions.js -------------------------------------------------------------------------------- /resources/www/plugins/cordova-plugin-media-capture/www/MediaFile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-webview-ios/HEAD/resources/www/plugins/cordova-plugin-media-capture/www/MediaFile.js -------------------------------------------------------------------------------- /resources/www/plugins/cordova-plugin-media-capture/www/MediaFileData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-webview-ios/HEAD/resources/www/plugins/cordova-plugin-media-capture/www/MediaFileData.js -------------------------------------------------------------------------------- /resources/www/plugins/cordova-plugin-media-capture/www/capture.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-webview-ios/HEAD/resources/www/plugins/cordova-plugin-media-capture/www/capture.js -------------------------------------------------------------------------------- /resources/www/plugins/cordova-plugin-network-information/www/Connection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-webview-ios/HEAD/resources/www/plugins/cordova-plugin-network-information/www/Connection.js -------------------------------------------------------------------------------- /resources/www/plugins/cordova-plugin-network-information/www/network.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-webview-ios/HEAD/resources/www/plugins/cordova-plugin-network-information/www/network.js -------------------------------------------------------------------------------- /resources/www/plugins/cordova-plugin-splashscreen/www/splashscreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-webview-ios/HEAD/resources/www/plugins/cordova-plugin-splashscreen/www/splashscreen.js -------------------------------------------------------------------------------- /resources/www/plugins/cordova-plugin-statusbar/www/statusbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-webview-ios/HEAD/resources/www/plugins/cordova-plugin-statusbar/www/statusbar.js -------------------------------------------------------------------------------- /resources/www/plugins/cordova-plugin-vibration/www/vibration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-webview-ios/HEAD/resources/www/plugins/cordova-plugin-vibration/www/vibration.js -------------------------------------------------------------------------------- /resources/www/plugins/cordova-plugin-wkwebview-engine/src/www/ios/ios-wkwebview-exec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-webview-ios/HEAD/resources/www/plugins/cordova-plugin-wkwebview-engine/src/www/ios/ios-wkwebview-exec.js -------------------------------------------------------------------------------- /resources/www/plugins/phonegap-plugin-push/www/push.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegap/phonegap-webview-ios/HEAD/resources/www/plugins/phonegap-plugin-push/www/push.js --------------------------------------------------------------------------------