2 Star 1 Fork 0

逃兵0216 / cordova-cookie-master

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
plugin.xml 1.80 KB
一键复制 编辑 原始数据 按行查看 历史
Kristian Hristov 提交于 2015-03-18 13:54 . Version 1.0.0
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://www.phonegap.com/ns/plugins/1.0"
id="com.cordova.plugins.cookiemaster"
version="1.0.0">
<name>CookieMaster</name>
<description>This plugin enables the management of cookies in WebViews on iOS and Android as those platforms restrict the use of "document.cookie".</description>
<license>MIT</license>
<keywords>cordova,phonegap,cookie,cookies,cookie-manager,cookie-plugin</keywords>
<engines>
<engine name="cordova" version=">=3.0.0" />
</engines>
<js-module src="www/cookieMaster.js" name="cookieMaster">
<clobbers target="cookieMaster" />
</js-module>
<!-- ios -->
<platform name="ios">
<config-file target="config.xml" parent="/*">
<feature name="CookieMaster">
<param name="ios-package" value="CDVCookieMaster"/>
</feature>
</config-file>
<header-file src="src/ios/CDVCookieMaster.h" />
<source-file src="src/ios/CDVCookieMaster.m" />
</platform>
<!-- android -->
<platform name="android">
<config-file target="AndroidManifest.xml" parent="/manifest">
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
</config-file>
<config-file target="res/xml/config.xml" parent="/*">
<feature name="CookieMaster">
<param name="android-package" value="com.cordova.plugins.cookiemaster.CookieMaster"/>
</feature>
</config-file>
<source-file src="src/android/com/cordova/plugins/cookiemaster/CookieMaster.java" target-dir="src/com/cordova/plugins/cookiemaster" />
</platform>
</plugin>
JavaScript
1
https://gitee.com/whan0216/cordova-cookie-master.git
git@gitee.com:whan0216/cordova-cookie-master.git
whan0216
cordova-cookie-master
cordova-cookie-master
master

搜索帮助