forked from bez4pieci/Phonegap-Cookies-Plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.xml
More file actions
35 lines (30 loc) · 1.32 KB
/
plugin.xml
File metadata and controls
35 lines (30 loc) · 1.32 KB
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
<?xml version="1.0" encoding="UTF-8" ?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0" id="com.jean1880.CookieJar" version="0.1.0">
<name>CookieJar</name>
<description>Phonegap/Cordova plugin that allows you to clear cookies of the webview. Use it for logging out the user, restart analytics session etc.</description>
<license>MIT</license>
<keywords>cordova,phonegap,cookies</keywords>
<engines>
<engine name="cordova" version=">=3.0.0" />
</engines>
<js-module src="www/CookieJar.js" name="CookieJar">
<clobbers target="CookieJar" />
</js-module>
<platform name="ios">
<config-file target="config.xml" parent="/*">
<feature name="CookieJar">
<param name="ios-package" value="CDVCookies" />
</feature>
</config-file>
<header-file src="src/ios/CDVCookies.h" />
<source-file src="src/ios/CDVCookies.m" />
</platform>
<platform name="android">
<config-file target="res/xml/config.xml" parent="/*">
<feature name="CookieJar">
<param name="android-package" value="com.jean1880.CookieJar.CookieJar" />
</feature>
</config-file>
<source-file src="src/android/CookieJar.java" target-dir="src/com/jean1880/CookieJar" />
</platform>
</plugin>