-
Notifications
You must be signed in to change notification settings - Fork 16
/
plugin.xml
75 lines (56 loc) · 2.37 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
<?xml version="1.0" encoding="utf-8"?>
<plugin xmlns="http://www.phonegap.com/ns/plugins/1.0"
id="cordova-plugin-ml-text"
version="3.1.0">
<name>Mltext</name>
<engines>
<engine name="cordova-android" version=">=6.4.0" />
<engine name="cordova-ios" version=">=4.3.0" />
</engines>
<asset src="www/gettext.js" target="js/gettext.js"/>
<js-module src="www/gettext.js" name="gettext">
<clobbers target="mltext" />
</js-module>
<platform name="android">
<config-file target="res/xml/config.xml" parent="/*">
<feature name="Mltext">
<param name="android-package" value="com.neutrinos.mltextplugin.Mltext"/>
</feature>
</config-file>
<preference name="MLKIT_TEXT_RECOGNITION_VERSION" default="16.1.0"/>
<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.mlkit.vision.DEPENDENCIES"
android:value="ocr" />
</config-file>
<source-file src="src/android/Mltext.java" target-dir="src/com/neutrinos/mltextplugin/" />
<framework src="com.google.android.gms:play-services-mlkit-text-recognition:$MLKIT_TEXT_RECOGNITION_VERSION" />
</platform>
<platform name="ios">
<config-file target="config.xml" parent="/*">
<feature name="Mltext">
<param name="ios-package" value="Mltext" />
</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/Mltext.h" target-dir="MltextPlugin"/>
<source-file src="src/ios/Mltext.m" target-dir="MltextPlugin"/>
<podspec>
<config>
<source url="https://cdn.cocoapods.org/"/>
</config>
<pods use-frameworks="true">
<pod name="MLKitTextRecognition" />
</pods>
</podspec>
</platform>
</plugin>