This repository has been archived by the owner on Oct 12, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 39
/
plugin.xml
49 lines (43 loc) · 1.94 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
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright (c) Microsoft Open Technologies, Inc. All Rights Reserved.
Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
-->
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
xmlns:android="http://schemas.android.com/apk/res/android"
id="cordova-plugin-websql"
version="0.0.10">
<name>Web SQL plugin</name>
<description>Web Sql Plugin for Apache Cordova</description>
<license>Apache 2.0</license>
<keywords>cordova, websql, db, database</keywords>
<repo>https://github.com/msopentech/cordova-plugin-websql/</repo>
<issue>https://github.com/msopentech/cordova-plugin-websql/issues</issue>
<platform name="wp8">
<js-module src="www/WebSQL.js" name="WebSQL">
<merges target="window" />
</js-module>
<js-module src="www/wp8/Database.js" name="Database" />
<js-module src="www/wp8/SqlTransaction.js" name="SqlTransaction" />
<config-file target="config.xml" parent="/*">
<feature name="WebSql">
<param name="wp-package" value="WebSql"/>
</feature>
</config-file>
<source-file src="src/wp/WebSql.cs" />
<source-file src="src/wp/SQLite.cs" />
<framework src="src/wp/Community.CsharpSqlite.WinPhone.dll" custom="true"/>
</platform>
<platform name="windows">
<js-module src="www/WebSQL.js" name="WebSQL">
<merges target="window" />
</js-module>
<js-module src="www/windows/Database.js" name="Database" />
<js-module src="www/windows/SqlTransaction.js" name="SqlTransaction" />
<framework src="src/windows/SQLite.Proxy/SQLite.Proxy.csproj"
custom="true" type="projectReference" target="all" />
<js-module src="src/windows/WebSqlProxy.js" name="WebSqlProxy">
<runs />
</js-module>
</platform>
</plugin>