summaryrefslogtreecommitdiff
path: root/StoneIsland/platforms/ios/www/cordova_plugins.js
diff options
context:
space:
mode:
authorJules Laplace <jules@okfoc.us>2015-09-10 14:58:03 -0400
committerJules Laplace <jules@okfoc.us>2015-09-10 14:58:03 -0400
commitd73a4b1c5a2540077607dcc4001acbae85980ae4 (patch)
treec30089f1742f9430bb18679dc6664157a5dc66f4 /StoneIsland/platforms/ios/www/cordova_plugins.js
parent124e6c0a8d9577b4a30e0b265f5c23d637c41966 (diff)
app skeleton
Diffstat (limited to 'StoneIsland/platforms/ios/www/cordova_plugins.js')
-rw-r--r--StoneIsland/platforms/ios/www/cordova_plugins.js102
1 files changed, 102 insertions, 0 deletions
diff --git a/StoneIsland/platforms/ios/www/cordova_plugins.js b/StoneIsland/platforms/ios/www/cordova_plugins.js
new file mode 100644
index 00000000..cb7aedde
--- /dev/null
+++ b/StoneIsland/platforms/ios/www/cordova_plugins.js
@@ -0,0 +1,102 @@
+cordova.define('cordova/plugin_list', function(require, exports, module) {
+module.exports = [
+ {
+ "file": "plugins/com.ionic.keyboard/www/keyboard.js",
+ "id": "com.ionic.keyboard.keyboard",
+ "clobbers": [
+ "cordova.plugins.Keyboard"
+ ]
+ },
+ {
+ "file": "plugins/cordova-plugin-console/www/logger.js",
+ "id": "cordova-plugin-console.logger",
+ "clobbers": [
+ "cordova.logger"
+ ]
+ },
+ {
+ "file": "plugins/cordova-plugin-console/www/console-via-logger.js",
+ "id": "cordova-plugin-console.console",
+ "clobbers": [
+ "console"
+ ]
+ },
+ {
+ "file": "plugins/cordova-plugin-device/www/device.js",
+ "id": "cordova-plugin-device.device",
+ "clobbers": [
+ "device"
+ ]
+ },
+ {
+ "file": "plugins/cordova-plugin-dialogs/www/notification.js",
+ "id": "cordova-plugin-dialogs.notification",
+ "merges": [
+ "navigator.notification"
+ ]
+ },
+ {
+ "file": "plugins/cordova-plugin-geolocation/www/Coordinates.js",
+ "id": "cordova-plugin-geolocation.Coordinates",
+ "clobbers": [
+ "Coordinates"
+ ]
+ },
+ {
+ "file": "plugins/cordova-plugin-geolocation/www/PositionError.js",
+ "id": "cordova-plugin-geolocation.PositionError",
+ "clobbers": [
+ "PositionError"
+ ]
+ },
+ {
+ "file": "plugins/cordova-plugin-geolocation/www/Position.js",
+ "id": "cordova-plugin-geolocation.Position",
+ "clobbers": [
+ "Position"
+ ]
+ },
+ {
+ "file": "plugins/cordova-plugin-geolocation/www/geolocation.js",
+ "id": "cordova-plugin-geolocation.geolocation",
+ "clobbers": [
+ "navigator.geolocation"
+ ]
+ },
+ {
+ "file": "plugins/cordova-plugin-network-information/www/network.js",
+ "id": "cordova-plugin-network-information.network",
+ "clobbers": [
+ "navigator.connection",
+ "navigator.network.connection"
+ ]
+ },
+ {
+ "file": "plugins/cordova-plugin-network-information/www/Connection.js",
+ "id": "cordova-plugin-network-information.Connection",
+ "clobbers": [
+ "Connection"
+ ]
+ },
+ {
+ "file": "plugins/cordova-plugin-splashscreen/www/splashscreen.js",
+ "id": "cordova-plugin-splashscreen.SplashScreen",
+ "clobbers": [
+ "navigator.splashscreen"
+ ]
+ }
+];
+module.exports.metadata =
+// TOP OF METADATA
+{
+ "cordova-plugin-whitelist": "1.0.0",
+ "com.ionic.keyboard": "1.0.4",
+ "cordova-plugin-console": "1.0.1",
+ "cordova-plugin-device": "1.0.1",
+ "cordova-plugin-dialogs": "1.1.1",
+ "cordova-plugin-geolocation": "1.0.1",
+ "cordova-plugin-network-information": "1.0.1",
+ "cordova-plugin-splashscreen": "2.1.0"
+}
+// BOTTOM OF METADATA
+}); \ No newline at end of file