-
Notifications
You must be signed in to change notification settings - Fork 7
/
plugin.xml
44 lines (39 loc) · 1.64 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
<?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-indexeddb-async" version="0.0.1">
<name>cordova-plugin-indexeddb-async</name>
<description>An asynchronous IndexedDB plug-in for Cordova apps</description>
<author>ABB Austin</author>
<license>Apache-2.0</license>
<keywords>cordova, indexeddb, db, database</keywords>
<repo>https://github.com/hitachienergy/cordova-plugin-indexeddb-async</repo>
<issues>https://github.com/hitachienergy/cordova-plugin-indexeddb-async/issues</issues>
<platform name="browser">
<js-module src="www/indexeddbshim.min.js" name="IndexedDBShim">
<runs />
</js-module>
</platform>
<platform name="ios">
<dependency id="cordova-plugin-sqlite-2"/>
<js-module src="www/requireSQLite2.js" name="RequireSQLite2">
<runs />
</js-module>
<js-module src="www/indexeddbshim.min.js" name="IndexedDBShim">
<runs />
</js-module>
</platform>
<platform name="android">
<js-module src="www/indexeddbshim.min.js" name="IndexedDBShim">
<runs />
</js-module>
</platform>
<platform name="windows">
<dependency id="cordova-plugin-websql" url="https://github.com/hitachienergy/cordova-plugin-websql.git"/>
<js-module src="www/requireWebSql.js" name="RequireWebSql">
<runs />
</js-module>
<js-module src="www/indexeddbshim.min.js" name="IndexedDBShim">
<runs />
</js-module>
</platform>
</plugin>