cronapp-cordova-plugin-barcodescanner 2.8.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.editorconfig +16 -0
- package/LICENSE.txt +22 -0
- package/README.md +52 -0
- package/hooks/windows/check-arch.js +52 -0
- package/package.json +37 -0
- package/plugin.xml +70 -0
- package/spec/helper/cordova.js +83 -0
- package/spec/index.spec.js +78 -0
- package/src/android/README.md +1 -0
- package/src/android/barcodescanner-release-2.1.5.aar +0 -0
- package/src/android/barcodescanner.gradle +17 -0
- package/src/android/com/phonegap/plugins/barcodescanner/BarcodeScanner.java +328 -0
- package/src/browser/BarcodeScannerProxy.js +24 -0
- package/src/ios/CDVBarcodeScanner.bundle/beep.caf +0 -0
- package/src/ios/CDVBarcodeScanner.bundle/torch.png +0 -0
- package/src/ios/CDVBarcodeScanner.bundle/torch@2x.png +0 -0
- package/src/ios/CDVBarcodeScanner.bundle/torch@3x.png +0 -0
- package/src/ios/CDVBarcodeScanner.mm +1072 -0
- package/src/ios/scannerOverlay.xib +185 -0
- package/src/windows/BarcodeScannerProxy.js +738 -0
- package/src/windows/assets/plugin-barcodeScanner.css +89 -0
- package/src/windows/lib/Properties/AssemblyInfo.cs +39 -0
- package/src/windows/lib/Reader.cs +173 -0
- package/src/windows/lib/WinRTBarcodeReader.csproj +137 -0
- package/src/windows/lib/ZXing.winmd +0 -0
- package/src/windows/lib.UW/ANY/ZXing.winmd +0 -0
- package/src/windows/lib.UW/ARM/ZXing.winmd +0 -0
- package/src/windows/lib.UW/x64/ZXing.winmd +0 -0
- package/src/windows/lib.UW/x86/ZXing.winmd +0 -0
- package/www/barcodescanner.js +156 -0
|
@@ -0,0 +1,185 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<archive type="com.apple.InterfaceBuilder3.CocoaTouch.XIB" version="8.00">
|
|
3
|
+
<data>
|
|
4
|
+
<int key="IBDocument.SystemTarget">1280</int>
|
|
5
|
+
<string key="IBDocument.SystemVersion">11C74</string>
|
|
6
|
+
<string key="IBDocument.InterfaceBuilderVersion">1938</string>
|
|
7
|
+
<string key="IBDocument.AppKitVersion">1138.23</string>
|
|
8
|
+
<string key="IBDocument.HIToolboxVersion">567.00</string>
|
|
9
|
+
<object class="NSMutableDictionary" key="IBDocument.PluginVersions">
|
|
10
|
+
<string key="NS.key.0">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
|
11
|
+
<string key="NS.object.0">933</string>
|
|
12
|
+
</object>
|
|
13
|
+
<array key="IBDocument.IntegratedClassDependencies">
|
|
14
|
+
<string>IBUINavigationItem</string>
|
|
15
|
+
<string>IBUIBarButtonItem</string>
|
|
16
|
+
<string>IBUIView</string>
|
|
17
|
+
<string>IBUINavigationBar</string>
|
|
18
|
+
<string>IBProxyObject</string>
|
|
19
|
+
</array>
|
|
20
|
+
<array key="IBDocument.PluginDependencies">
|
|
21
|
+
<string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
|
22
|
+
</array>
|
|
23
|
+
<object class="NSMutableDictionary" key="IBDocument.Metadata">
|
|
24
|
+
<string key="NS.key.0">PluginDependencyRecalculationVersion</string>
|
|
25
|
+
<integer value="1" key="NS.object.0"/>
|
|
26
|
+
</object>
|
|
27
|
+
<array class="NSMutableArray" key="IBDocument.RootObjects" id="1000">
|
|
28
|
+
<object class="IBProxyObject" id="372490531">
|
|
29
|
+
<string key="IBProxiedObjectIdentifier">IBFilesOwner</string>
|
|
30
|
+
<string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
|
|
31
|
+
</object>
|
|
32
|
+
<object class="IBProxyObject" id="975951072">
|
|
33
|
+
<string key="IBProxiedObjectIdentifier">IBFirstResponder</string>
|
|
34
|
+
<string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
|
|
35
|
+
</object>
|
|
36
|
+
<object class="IBUIView" id="191373211">
|
|
37
|
+
<reference key="NSNextResponder"/>
|
|
38
|
+
<int key="NSvFlags">274</int>
|
|
39
|
+
<array class="NSMutableArray" key="NSSubviews">
|
|
40
|
+
<object class="IBUINavigationBar" id="1064216609">
|
|
41
|
+
<reference key="NSNextResponder" ref="191373211"/>
|
|
42
|
+
<int key="NSvFlags">290</int>
|
|
43
|
+
<string key="NSFrameSize">{320, 44}</string>
|
|
44
|
+
<reference key="NSSuperview" ref="191373211"/>
|
|
45
|
+
<reference key="NSWindow"/>
|
|
46
|
+
<reference key="NSNextKeyView"/>
|
|
47
|
+
<string key="NSReuseIdentifierKey">_NS:260</string>
|
|
48
|
+
<string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
|
|
49
|
+
<int key="IBUIBarStyle">1</int>
|
|
50
|
+
<array class="NSMutableArray" key="IBUIItems">
|
|
51
|
+
<object class="IBUINavigationItem" id="240626599">
|
|
52
|
+
<reference key="IBUINavigationBar" ref="1064216609"/>
|
|
53
|
+
<string key="IBUITitle">Barcode Scanner</string>
|
|
54
|
+
<object class="IBUIBarButtonItem" key="IBUILeftBarButtonItem" id="1053701234">
|
|
55
|
+
<string key="IBUITitle">Cancel</string>
|
|
56
|
+
<string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
|
|
57
|
+
<int key="IBUIStyle">1</int>
|
|
58
|
+
<reference key="IBUINavigationItem" ref="240626599"/>
|
|
59
|
+
</object>
|
|
60
|
+
<string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
|
|
61
|
+
</object>
|
|
62
|
+
</array>
|
|
63
|
+
</object>
|
|
64
|
+
</array>
|
|
65
|
+
<string key="NSFrameSize">{320, 460}</string>
|
|
66
|
+
<reference key="NSSuperview"/>
|
|
67
|
+
<reference key="NSWindow"/>
|
|
68
|
+
<reference key="NSNextKeyView" ref="1064216609"/>
|
|
69
|
+
<object class="NSColor" key="IBUIBackgroundColor">
|
|
70
|
+
<int key="NSColorSpace">3</int>
|
|
71
|
+
<bytes key="NSWhite">MSAwAA</bytes>
|
|
72
|
+
<object class="NSColorSpace" key="NSCustomColorSpace">
|
|
73
|
+
<int key="NSID">2</int>
|
|
74
|
+
</object>
|
|
75
|
+
</object>
|
|
76
|
+
<string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
|
|
77
|
+
</object>
|
|
78
|
+
</array>
|
|
79
|
+
<object class="IBObjectContainer" key="IBDocument.Objects">
|
|
80
|
+
<array class="NSMutableArray" key="connectionRecords">
|
|
81
|
+
<object class="IBConnectionRecord">
|
|
82
|
+
<object class="IBCocoaTouchOutletConnection" key="connection">
|
|
83
|
+
<string key="label">overlayView</string>
|
|
84
|
+
<reference key="source" ref="372490531"/>
|
|
85
|
+
<reference key="destination" ref="191373211"/>
|
|
86
|
+
</object>
|
|
87
|
+
<int key="connectionID">9</int>
|
|
88
|
+
</object>
|
|
89
|
+
</array>
|
|
90
|
+
<object class="IBMutableOrderedSet" key="objectRecords">
|
|
91
|
+
<array key="orderedObjects">
|
|
92
|
+
<object class="IBObjectRecord">
|
|
93
|
+
<int key="objectID">0</int>
|
|
94
|
+
<array key="object" id="0"/>
|
|
95
|
+
<reference key="children" ref="1000"/>
|
|
96
|
+
<nil key="parent"/>
|
|
97
|
+
</object>
|
|
98
|
+
<object class="IBObjectRecord">
|
|
99
|
+
<int key="objectID">1</int>
|
|
100
|
+
<reference key="object" ref="191373211"/>
|
|
101
|
+
<array class="NSMutableArray" key="children">
|
|
102
|
+
<reference ref="1064216609"/>
|
|
103
|
+
</array>
|
|
104
|
+
<reference key="parent" ref="0"/>
|
|
105
|
+
</object>
|
|
106
|
+
<object class="IBObjectRecord">
|
|
107
|
+
<int key="objectID">-1</int>
|
|
108
|
+
<reference key="object" ref="372490531"/>
|
|
109
|
+
<reference key="parent" ref="0"/>
|
|
110
|
+
<string key="objectName">File's Owner</string>
|
|
111
|
+
</object>
|
|
112
|
+
<object class="IBObjectRecord">
|
|
113
|
+
<int key="objectID">-2</int>
|
|
114
|
+
<reference key="object" ref="975951072"/>
|
|
115
|
+
<reference key="parent" ref="0"/>
|
|
116
|
+
</object>
|
|
117
|
+
<object class="IBObjectRecord">
|
|
118
|
+
<int key="objectID">3</int>
|
|
119
|
+
<reference key="object" ref="1064216609"/>
|
|
120
|
+
<array class="NSMutableArray" key="children">
|
|
121
|
+
<reference ref="240626599"/>
|
|
122
|
+
</array>
|
|
123
|
+
<reference key="parent" ref="191373211"/>
|
|
124
|
+
</object>
|
|
125
|
+
<object class="IBObjectRecord">
|
|
126
|
+
<int key="objectID">4</int>
|
|
127
|
+
<reference key="object" ref="240626599"/>
|
|
128
|
+
<array class="NSMutableArray" key="children">
|
|
129
|
+
<reference ref="1053701234"/>
|
|
130
|
+
</array>
|
|
131
|
+
<reference key="parent" ref="1064216609"/>
|
|
132
|
+
</object>
|
|
133
|
+
<object class="IBObjectRecord">
|
|
134
|
+
<int key="objectID">10</int>
|
|
135
|
+
<reference key="object" ref="1053701234"/>
|
|
136
|
+
<reference key="parent" ref="240626599"/>
|
|
137
|
+
</object>
|
|
138
|
+
</array>
|
|
139
|
+
</object>
|
|
140
|
+
<dictionary class="NSMutableDictionary" key="flattenedProperties">
|
|
141
|
+
<string key="-1.CustomClassName">PGbcsViewController</string>
|
|
142
|
+
<string key="-1.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
|
143
|
+
<string key="-2.CustomClassName">UIResponder</string>
|
|
144
|
+
<string key="-2.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
|
145
|
+
<string key="1.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
|
146
|
+
<string key="10.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
|
147
|
+
<string key="3.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
|
148
|
+
<string key="4.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
|
149
|
+
</dictionary>
|
|
150
|
+
<dictionary class="NSMutableDictionary" key="unlocalizedProperties"/>
|
|
151
|
+
<nil key="activeLocalization"/>
|
|
152
|
+
<dictionary class="NSMutableDictionary" key="localizations"/>
|
|
153
|
+
<nil key="sourceID"/>
|
|
154
|
+
<int key="maxID">11</int>
|
|
155
|
+
</object>
|
|
156
|
+
<object class="IBClassDescriber" key="IBDocument.Classes">
|
|
157
|
+
<array class="NSMutableArray" key="referencedPartialClassDescriptions">
|
|
158
|
+
<object class="IBPartialClassDescription">
|
|
159
|
+
<string key="className">PGbcsViewController</string>
|
|
160
|
+
<string key="superclassName">UIViewController</string>
|
|
161
|
+
<object class="NSMutableDictionary" key="outlets">
|
|
162
|
+
<string key="NS.key.0">overlayView</string>
|
|
163
|
+
<string key="NS.object.0">UIView</string>
|
|
164
|
+
</object>
|
|
165
|
+
<object class="NSMutableDictionary" key="toOneOutletInfosByName">
|
|
166
|
+
<string key="NS.key.0">overlayView</string>
|
|
167
|
+
<object class="IBToOneOutletInfo" key="NS.object.0">
|
|
168
|
+
<string key="name">overlayView</string>
|
|
169
|
+
<string key="candidateClassName">UIView</string>
|
|
170
|
+
</object>
|
|
171
|
+
</object>
|
|
172
|
+
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
|
173
|
+
<string key="majorKey">IBProjectSource</string>
|
|
174
|
+
<string key="minorKey">./Classes/PGbcsViewController.h</string>
|
|
175
|
+
</object>
|
|
176
|
+
</object>
|
|
177
|
+
</array>
|
|
178
|
+
</object>
|
|
179
|
+
<int key="IBDocument.localizationMode">0</int>
|
|
180
|
+
<string key="IBDocument.TargetRuntimeIdentifier">IBCocoaTouchFramework</string>
|
|
181
|
+
<bool key="IBDocument.PluginDeclaredDependenciesTrackSystemTargetVersion">YES</bool>
|
|
182
|
+
<int key="IBDocument.defaultPropertyAccessControl">3</int>
|
|
183
|
+
<string key="IBCocoaTouchPluginVersion">933</string>
|
|
184
|
+
</data>
|
|
185
|
+
</archive>
|