-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.xml
executable file
·94 lines (78 loc) · 4.59 KB
/
plugin.xml
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
xmlns:android="http://schemas.android.com/apk/res/android"
id="cordova-plugin-zbarcodescanner"
version="0.0.1">
<name>ZBarScanner</name>
<author>Rameez Raja</author>
<description>An cordova implementation of ZBar SDK(http://zbar.sourceforge.net/)</description>
<license>MIT</license>
<js-module src="www/zbar-scanner.js" name="zbarScanner">
<clobbers target="cordova.plugins.zbarScanner" />
</js-module>
<!-- ios -->
<platform name="ios">
<config-file target="config.xml" parent="/*">
<feature name="ZBarScanner">
<param name="ios-package" value="ZBarScanner"/>
</feature>
</config-file>
<resource-file src="src/ios/ZBarScanner.bundle" />
<resource-file src="src/ios/ZBarSDK/Resources/zbar-back.png" />
<resource-file src="src/ios/ZBarSDK/Resources/zbar-help.html" />
<resource-file src="src/ios/ZBarSDK/Resources/zbar-helpicons.png" />
<resource-file src="src/ios/ZBarSDK/Resources/zbar-samples.png" />
<resource-file src="src/ios/[email protected]" />
<header-file src="src/ios/ZBarScanner.h" />
<source-file src="src/ios/ZBarScanner.m" />
<header-file src="src/ios/ZBarcodeScannerViewController.h" />
<source-file src="src/ios/ZBarcodeScannerViewController.m" />
<header-file src="src/ios/ZBarSDK/Headers/ZBarSDK/zbar/Decoder.h" />
<header-file src="src/ios/ZBarSDK/Headers/ZBarSDK/zbar/Exception.h" />
<header-file src="src/ios/ZBarSDK/Headers/ZBarSDK/zbar/Image.h" />
<header-file src="src/ios/ZBarSDK/Headers/ZBarSDK/zbar/ImageScanner.h" />
<header-file src="src/ios/ZBarSDK/Headers/ZBarSDK/zbar/Processor.h" />
<header-file src="src/ios/ZBarSDK/Headers/ZBarSDK/zbar/Scanner.h" />
<header-file src="src/ios/ZBarSDK/Headers/ZBarSDK/zbar/Symbol.h" />
<header-file src="src/ios/ZBarSDK/Headers/ZBarSDK/zbar/Video.h" />
<header-file src="src/ios/ZBarSDK/Headers/ZBarSDK/zbar/Window.h" />
<header-file src="src/ios/ZBarSDK/Headers/ZBarSDK/zbar.h" />
<header-file src="src/ios/ZBarSDK/Headers/ZBarSDK/ZBarCameraSimulator.h" />
<header-file src="src/ios/ZBarSDK/Headers/ZBarSDK/ZBarCaptureReader.h" />
<header-file src="src/ios/ZBarSDK/Headers/ZBarSDK/ZBarHelpController.h" />
<header-file src="src/ios/ZBarSDK/Headers/ZBarSDK/ZBarImage.h" />
<header-file src="src/ios/ZBarSDK/Headers/ZBarSDK/ZBarImageScanner.h" />
<header-file src="src/ios/ZBarSDK/Headers/ZBarSDK/ZBarReaderController.h" />
<header-file src="src/ios/ZBarSDK/Headers/ZBarSDK/ZBarReaderView.h" />
<header-file src="src/ios/ZBarSDK/Headers/ZBarSDK/ZBarReaderViewController.h" />
<header-file src="src/ios/ZBarSDK/Headers/ZBarSDK/ZBarSDK.h" />
<header-file src="src/ios/ZBarSDK/Headers/ZBarSDK/ZBarSymbol.h" />
<framework src="AVFoundation.framework" />
<framework src="CoreMedia.framework" />
<framework src="CoreVideo.framework" />
<framework src="QuartzCore.framework" />
<framework src="AudioToolbox.framework" />
<framework src="libiconv.dylib" />
<source-file src="src/ios/ZBarSDK/libzbar.a" framework="true" />
</platform>
<!--<platform name="android">
<source-file src="src/android/ZBarScanner.java" target-dir="src/com/mrameezraja/plugins/zbarscanner" />
<config-file target="res/xml/config.xml" parent="/*">
<feature name="ZBarScanner">
<param name="android-package" value="com.mrameezraja.plugins.zbarscanner.ZBarScanner" />
</feature>
</config-file>
<config-file target="AndroidManifest.xml" parent="/manifest/application">
<activity android:name="com.dm.zbar.android.scanner.ZBarScannerActivity"
android:screenOrientation="portrait"
android:label="@string/app_name" />
</config-file>
<config-file target="AndroidManifest.xml" parent="/manifest">
<uses-permission android:name="android.permission.CAMERA" />
<uses-permission android:name="android.permission.FLASHLIGHT" />
<uses-feature android:name="android.hardware.camera" android:required="false" />
</config-file>
<framework src="src/android/barcodescanner.gradle" custom="true" type="gradleReference"/>
<resource-file src="src/android/barcodescanner-release-2.0.1.aar" target="libs/barcodescanner.aar" />
</platform>-->
</plugin>