-
Notifications
You must be signed in to change notification settings - Fork 1
/
plugin.xml
27 lines (27 loc) · 1.01 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
<?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="com.photokandy.localstorage"
version="1.1.0">
<engines>
<engine name="cordova" version=">=2.9.0" />
</engines>
<name>Persistent Local Storage</name>
<description>Persists localStorage during "pause" events.</description>
<author>Kerri Shotts</author>
<keywords>localStorage, persist, pause, resume </keywords>
<license>MIT</license>
<platform name="ios">
<js-module src="www/PKLocalStorage.js" name="PKLocalStorage">
<clobbers target="window.PKLocalStorage" />
</js-module>
<!-- ios-specific elements -->
<header-file src="src/ios/PKLocalStorage.h" />
<source-file src="src/ios/PKLocalStorage.m" />
<config-file target="config.xml" parent="/widget/plugins">
<feature name="PKLocalStorage">
<param name="ios-package" onload="true" value="PKLocalStorage"/>
</feature>
</config-file>
</platform>
</plugin>