-
Notifications
You must be signed in to change notification settings - Fork 1
/
plugin.xml
22 lines (20 loc) · 900 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
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
id="org.apache.cordova.serviceworker"
version="0.0.1-dev">
<name>ServiceWorker</name>
<description>Service Worker Plugin</description>
<license>Apache 2.0</license>
<keywords>cordova,serviceworker</keywords>
<!-- JS modules for use by the plugin (browser env) -->
<js-module src="www/q.js" name="Q" />
<js-module src="www/serviceworkercontainer.js" name="ServiceWorkerContainer">
<clobbers target="navigator.serviceWorker" />
</js-module>
<js-module src="www/serviceworkerregistration.js" name="ServiceWorker">
<clobbers target="ServiceWorkerRegistration" />
</js-module>
<!-- Assets for use by the worker (worker env) -->
<asset src="www/q.js" target="q.js" />
<asset src="www/poly.js" target="poly.js" />
</plugin>