2013-04-03 07:27:26 +08:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
|
2013-07-25 05:43:39 +08:00
|
|
|
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
|
2013-09-21 18:30:34 +08:00
|
|
|
id="org.apache.cordova.inappbrowser"
|
|
|
|
version="0.2.1">
|
2013-04-03 07:27:26 +08:00
|
|
|
<name>InAppBrowser</name>
|
2013-07-31 06:32:22 +08:00
|
|
|
<description>Cordova InAppBrowser Plugin</description>
|
2013-08-07 05:52:52 +08:00
|
|
|
<license>Apache 2.0</license>
|
2013-07-31 06:32:22 +08:00
|
|
|
<keywords>cordova,in,app,browser,inappbrowser</keywords>
|
2013-04-03 07:27:26 +08:00
|
|
|
|
2013-07-25 05:43:39 +08:00
|
|
|
|
2013-05-17 06:15:42 +08:00
|
|
|
<js-module src="www/InAppBrowser.js" name="InAppBrowser">
|
2013-05-21 05:04:50 +08:00
|
|
|
<clobbers target="window.open" />
|
2013-05-17 06:15:42 +08:00
|
|
|
</js-module>
|
|
|
|
|
2013-04-03 07:27:26 +08:00
|
|
|
<!-- android -->
|
|
|
|
<platform name="android">
|
2013-05-21 05:04:50 +08:00
|
|
|
<config-file target="res/xml/config.xml" parent="/*">
|
|
|
|
<feature name="InAppBrowser">
|
2013-08-01 07:57:24 +08:00
|
|
|
<param name="android-package" value="org.apache.cordova.inappbrowser.InAppBrowser"/>
|
2013-05-21 05:04:50 +08:00
|
|
|
</feature>
|
2013-04-03 07:27:26 +08:00
|
|
|
</config-file>
|
|
|
|
|
2013-08-01 07:57:24 +08:00
|
|
|
<source-file src="src/android/InAppBrowser.java" target-dir="src/org/apache/cordova/inappbrowser" />
|
2013-09-18 06:51:54 +08:00
|
|
|
<source-file src="src/android/InAppChromeClient.java" target-dir="src/org/apache/cordova/inappbrowser" />
|
2013-05-17 04:57:48 +08:00
|
|
|
</platform>
|
|
|
|
|
|
|
|
<!-- ios -->
|
|
|
|
<platform name="ios">
|
2013-05-21 05:04:50 +08:00
|
|
|
<config-file target="config.xml" parent="/*">
|
|
|
|
<feature name="InAppBrowser">
|
|
|
|
<param name="ios-package" value="CDVInAppBrowser" />
|
|
|
|
</feature>
|
2013-05-17 04:57:48 +08:00
|
|
|
</config-file>
|
2013-05-21 05:04:50 +08:00
|
|
|
|
2013-05-17 04:57:48 +08:00
|
|
|
<header-file src="src/ios/CDVInAppBrowser.h" />
|
|
|
|
<source-file src="src/ios/CDVInAppBrowser.m" />
|
2013-07-24 08:08:18 +08:00
|
|
|
|
|
|
|
<framework src="CoreGraphics.framework" />
|
2013-05-17 04:57:48 +08:00
|
|
|
</platform>
|
2013-05-28 06:23:50 +08:00
|
|
|
|
2013-07-31 07:15:00 +08:00
|
|
|
<!-- blackberry10 -->
|
|
|
|
<!-- <platform name="blackberry10">
|
|
|
|
<config-file target="www/config.xml" parent="/widget">
|
|
|
|
<feature name="InAppBrowser" value="InAppBrowser"/>
|
|
|
|
</config-file>
|
|
|
|
</platform>
|
|
|
|
-->
|
2013-05-28 06:23:50 +08:00
|
|
|
<!-- wp7 -->
|
|
|
|
<platform name="wp7">
|
|
|
|
<config-file target="config.xml" parent="/*">
|
|
|
|
<feature name="InAppBrowser">
|
|
|
|
<param name="wp-package" value="InAppBrowser"/>
|
|
|
|
</feature>
|
|
|
|
</config-file>
|
|
|
|
|
2013-07-09 06:55:35 +08:00
|
|
|
<source-file src="src/wp/InAppBrowser.cs" />
|
|
|
|
</platform>
|
|
|
|
|
|
|
|
<!-- wp8 -->
|
|
|
|
<platform name="wp8">
|
|
|
|
<config-file target="config.xml" parent="/*">
|
|
|
|
<feature name="InAppBrowser">
|
|
|
|
<param name="wp-package" value="InAppBrowser"/>
|
|
|
|
</feature>
|
|
|
|
</config-file>
|
|
|
|
|
|
|
|
<source-file src="src/wp/InAppBrowser.cs" />
|
2013-05-28 06:23:50 +08:00
|
|
|
</platform>
|
2013-08-13 04:51:54 +08:00
|
|
|
|
|
|
|
<!-- windows8 -->
|
|
|
|
<platform name="windows8">
|
|
|
|
<js-module src="www/windows8/InAppBrowserProxy.js" name="InAppBrowserProxy">
|
|
|
|
<merges target="" />
|
|
|
|
</js-module>
|
|
|
|
</platform>
|
2013-05-17 04:57:48 +08:00
|
|
|
|
2013-05-28 06:23:50 +08:00
|
|
|
|
2013-04-03 07:27:26 +08:00
|
|
|
</plugin>
|