forked from marcucio/Cordova-WP-SqlitePlugin
-
Notifications
You must be signed in to change notification settings - Fork 1
/
plugin.xml
32 lines (25 loc) · 1004 Bytes
/
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
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
id="ch.zhaw.sqlite"
version="2.0.0">
<engines>
<engine name="cordova" version=">=3.0.0" />
</engines>
<name>SqlitePlugin</name>
<description>Plugin to add support for SQLite databases on windows based devices</description>
<author>ZHAW</author>
<keywords>SQLite, sql, database, windows phone</keywords>
<license>Apache 2.0</license>
<platform name="wp8">
<js-module src="Cordova-WP-SqlitePlugin/www/SQLitePlugin.js" name="SqlitePlugin">
<clobbers target="window.plugins.sqlitePlugin" />
</js-module>
<config-file target="config.xml" parent="/*">
<feature name="SQLitePlugin">
<param name="wp-package" value="SQLitePlugin"/>
</feature>
</config-file>
<source-file src="Cordova-WP-SqlitePlugin/Plugins/SqlitePlugin/SQLitePlugin.cs" />
<source-file src="Cordova-WP-SqlitePlugin/Plugins/SqlitePlugin/SQLite.cs" />
</platform>
</plugin>