-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcordova_plugins.js
46 lines (46 loc) · 1.36 KB
/
cordova_plugins.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
cordova.define('cordova/plugin_list', function(require, exports, module) {
module.exports = [
{
"file": "plugins/com.phonegap.plugins.barcodescanner/www/barcodescanner.js",
"id": "com.phonegap.plugins.barcodescanner.BarcodeScanner",
"clobbers": [
"cordova.plugins.barcodeScanner"
]
},
{
"file": "plugins/org.apache.cordova.geolocation/www/Coordinates.js",
"id": "org.apache.cordova.geolocation.Coordinates",
"clobbers": [
"Coordinates"
]
},
{
"file": "plugins/org.apache.cordova.geolocation/www/PositionError.js",
"id": "org.apache.cordova.geolocation.PositionError",
"clobbers": [
"PositionError"
]
},
{
"file": "plugins/org.apache.cordova.geolocation/www/Position.js",
"id": "org.apache.cordova.geolocation.Position",
"clobbers": [
"Position"
]
},
{
"file": "plugins/org.apache.cordova.geolocation/www/geolocation.js",
"id": "org.apache.cordova.geolocation.geolocation",
"clobbers": [
"navigator.geolocation"
]
},
{
"file": "plugins/org.apache.cordova.inappbrowser/www/InAppBrowser.js",
"id": "org.apache.cordova.inappbrowser.InAppBrowser",
"clobbers": [
"window.open"
]
}
]
});