-
Notifications
You must be signed in to change notification settings - Fork 4
/
plugin.xml
57 lines (49 loc) · 1.9 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
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
xmlns:rim="http://www.blackberry.com/ns/widgets"
xmlns:android="http://schemas.android.com/apk/res/android"
id="net.orworks.cordovaplugins.cordovasqlite"
version="1.9.0">
<name>CordovaSQLite</name>
<description>Cordova SQLite Plugin</description>
<license>Apache 2.0</license>
<keywords>cordova,sqlite</keywords>
<repo>https://github.com/samikrc/CordovaSQLite.git</repo>
<issue>https://github.com/samikrc/CordovaSQLite/issues</issue>
<engines>
<engine name="cordova" version=">=3.4.0" />
</engines>
<js-module src="www/cordovasqlite.js" name="cordovaSQLite">
<clobbers target="cordovaSQLite" />
</js-module>
<!-- android -->
<platform name="android">
<config-file target="res/xml/config.xml" parent="/*">
<feature name="CordovaSQLite" >
<param name="android-package" value="net.orworks.cordovaplugins.cordovasqlite.CordovaSQLite" />
</feature>
</config-file>
<source-file src="src/android/CordovaSQLite.java" target-dir="src/net/orworks/cordovaplugins/cordovasqlite" />
</platform>
<!-- ios -->
<platform name="ios">
<config-file target="config.xml" parent="/*">
<feature name="CordovaSQLite">
<param name="ios-package" value="CordovaSQLite"/>
</feature>
</config-file>
<header-file src="src/ios/CordovaSQLite.h" />
<source-file src="src/ios/CordovaSQLite.m" />
</platform>
<!-- browser -->
<platform name="browser">
<config-file target="config.xml" parent="/*">
<feature name="CordovaSQLite">
<param name="browser-package" value="CordovaSQLite" />
</feature>
</config-file>
<js-module src="src/browser/cordovaSqliteBrowser.js" name="CordovaSQLiteProxy">
<runs />
</js-module>
</platform>
</plugin>