forked from microsoft/cordova-plugin-indexedDB
-
Notifications
You must be signed in to change notification settings - Fork 1
/
plugin.xml
40 lines (36 loc) · 1.42 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
<?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-indexedDB"
version="0.1.3">
<name>IndexedDB polyfill</name>
<description>IndexedDB plugin for Apache Cordova</description>
<license>Apache 2.0</license>
<keywords>cordova, indexedDB, db, database</keywords>
<repo>https://github.com/msopentech/cordova-plugin-indexedDB/</repo>
<issue>https://github.com/msopentech/cordova-plugin-indexedDB/issues</issue>
<platform name="ios">
<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">
<!-- Needed for Windows Phone 8.1 support -->
<dependency id="com.msopentech.websql"/>
<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>