forked from NeutrinosPlatform/cordova-plugin-mobile-ocr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.xml
69 lines (50 loc) · 2.17 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
<?xml version="1.0" encoding="utf-8"?>
<plugin xmlns="http://www.phonegap.com/ns/plugins/1.0"
id="cordova-plugin-mobile-ocr"
version="3.1.1">
<name>Textocr</name>
<engines>
<engine name="cordova-android" version=">=6.3.0" />
<engine name="cordova-ios" version=">=4.3.0" />
</engines>
<asset src="www/rectext.js" target="js/rectext.js"/>
<js-module src="www/rectext.js" name="rectext">
<clobbers target="textocr" />
</js-module>
<!-- <dependency id="cordova-plugin-cocoapod-support" version="1.3.0" />-->
<platform name="android">
<config-file target="res/xml/config.xml" parent="/*">
<feature name="Textocr">
<param name="android-package" value="com.neutrinos.ocrplugin.Textocr"/>
</feature>
</config-file>
<config-file target="AndroidManifest.xml" parent="/*">
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<meta-data
android:name="com.google.android.gms.vision.DEPENDENCIES"
android:value="ocr"/>
</config-file>
<source-file src="src/android/Textocr.java" target-dir="src/com/neutrinos/ocrplugin/" />
<framework src="com.google.android.gms:play-services-vision:17.0.2" />
</platform>
<platform name="ios">
<config-file target="config.xml" parent="/*">
<feature name="Textocr">
<param name="ios-package" value="Textocr" />
</feature>
</config-file>
<config-file target="*-Info.plist">
<array>
<string>NSPhotoLibraryUsageDescription</string>
<string>need photo library access to save pictures there</string>
</array>
</config-file>
<header-file src="src/ios/Textocr.h" target-dir="OcrPlugin"/>
<source-file src="src/ios/Textocr.m" target-dir="OcrPlugin"/>
<framework src="GoogleMobileVision/TextDetector" type="podspec" spec="~> 1.3.2"/>
<!--<framework src="GTMSessionFetcher" type="podspec" spec="~> 1.1.15"/>-->
<!--<framework src="Protobuf" type="podspec" spec="~> 3.6.0"/>-->
<!--<framework src="GoogleToolboxForMac" type="podspec" spec="~> 2.1.4"/>-->
</platform>
</plugin>