-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.xml
38 lines (30 loc) · 1.7 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
<?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-realsense-ep"
version="1.0.0">
<name>Intel RealSense EnhancedPhotography</name>
<description>Provides Javascript object realsense.EnhancedPhotography to access Intel RealSense EnhancedPhotography feature</description>
<license>Apache 2.0</license>
<keywords>cordova,crosswalk,realsense</keywords>
<repo>https://github.com/crosswalk-project/cordova-plugin-realsense-ep</repo>
<issue>https://crosswalk-project.org/jira</issue>
<dependency id="cordova-plugin-crosswalk-webview"/>
<engines>
<engine name="cordova-android" version=">=4"/>
<engine name="cordova-plugman" version=">=4.2.0"/><!-- needed for gradleReference support -->
</engines>
<!-- android -->
<platform name="android">
<config-file target="res/xml/config.xml" parent="/*">
<preference name="ep_options" value="Todo"/>
</config-file>
<config-file target="AndroidManifest.xml" parent="/*">
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
</config-file>
<resource-file src="platforms/android/assets/xwalk-extensions/echoJsStubGenExtension/echoJsStubGenExtension.json" target="assets/xwalk-extensions/echoJsStubGenExtension/echoJsStubGenExtension.json"/>
<lib-file src="platforms/android/libs/echoJsStubGenExtension.jar"/>
<hook type="after_plugin_install" src="hooks/after_plugin_install.js"/>
<hook type="before_plugin_uninstall" src="hooks/before_plugin_uninstall.js"/>
</platform>
</plugin>