-
Notifications
You must be signed in to change notification settings - Fork 63
/
plugin.xml
executable file
·50 lines (40 loc) · 1.88 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
<?xml version="1.0" encoding="utf-8"?>
<plugin xmlns="http://www.phonegap.com/ns/plugins/1.0" id="cordova-plugin-document-scanner" version="5.0.0-beta.1">
<name>Scan</name>
<engines>
<engine name="cordova-android" version=">=6.4.0" />
</engines>
<asset src="www/scan.js" target="js/scan.js"/>
<js-module src="www/scan.js" name="scan">
<clobbers target="scan" />
</js-module>
<platform name="android">
<config-file target="res/xml/config.xml" parent="/*">
<feature name="Scan">
<param name="android-package" value="com.neutrinos.plugin.Scan"/>
</feature>
</config-file>
<source-file src="src/android/Scan.java" target-dir="src/com/neutrinos/plugin/" />
<source-file src="src/android/FileHelper.java" target-dir="src/com/neutrinos/plugin/" />
<framework src="src/android/build.gradle" custom="true" type="gradleReference"/>
</platform>
<platform name="ios">
<config-file target="config.xml" parent="/*">
<feature name="Scan">
<param name="ios-package" value="Scan" />
</feature>
</config-file>
<preference name="CAMERA_USAGE_DESCRIPTION" default="This app needs camera access"/>
<config-file target="*-Info.plist" parent="NSCameraUsageDescription">
<string>$CAMERA_USAGE_DESCRIPTION</string>
</config-file>
<preference name="PHOTOLIBRARY_USAGE_DESCRIPTION" default="This app needs read/write-access photo library access"/>
<config-file target="*-Info.plist" parent="NSPhotoLibraryUsageDescription">
<string>$PHOTOLIBRARY_USAGE_DESCRIPTION</string>
</config-file>
<header-file src="src/ios/Scan.h" target-dir="ScanPlugin"/>
<source-file src="src/ios/Scan.m" target-dir="ScanPlugin"/>
<framework src="src/ios/TOCropViewController.framework" custom="true" embed="true"/>
<framework src="src/ios/IRLDocumentScanner.framework" custom="true" embed="true"/>
</platform>
</plugin>