-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathplugin.xml
23 lines (21 loc) · 1.06 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
<?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-websql-async" version="1.0">
<name>Web SQL plugin</name>
<description>Web Sql Plugin for Apache Cordova (based on com.msopentech.websql)</description>
<keywords>cordova, websql, db, database</keywords>
<author>Thinkwise</author>
<repo>https://github.com/Thinkwise/cordova-plugin-websql</repo>
<issues>https://github.com/Thinkwise/cordova-plugin-websql/issues</issues>
<platform name="windows">
<hook type="after_plugin_install" src="scripts/after_plugin_install.js"/>
<js-module src="www/WebSQL.js" name="WebSQL">
<clobbers target="window" />
</js-module>
<js-module src="www/windows/Database.js" name="Database" />
<js-module src="www/windows/SqlTransaction.js" name="SqlTransaction" />
<js-module src="src/windows/WebSqlProxy.js" name="WebSqlProxy">
<runs />
</js-module>
</platform>
</plugin>