2013-04-03 07:27:26 +08:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
|
|
|
|
<plugin xmlns="http://www.phonegap.com/ns/plugins/1.0"
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
2013-05-17 04:57:48 +08:00
|
|
|
id="org.apache.cordova.core.InAppBrowser"
|
2013-04-03 07:27:26 +08:00
|
|
|
version="0.1.0">
|
|
|
|
<name>InAppBrowser</name>
|
|
|
|
|
|
|
|
<!-- android -->
|
|
|
|
<platform name="android">
|
|
|
|
<config-file target="res/xml/config.xml" parent="/cordova/plugins">
|
|
|
|
<plugin name="InAppBrowser" value="org.apache.cordova.core.InAppBrowser"/>
|
|
|
|
</config-file>
|
|
|
|
|
|
|
|
<source-file src="InAppBrowser.java" target-dir="org/apache/cordova/core" />
|
2013-05-17 04:57:48 +08:00
|
|
|
</platform>
|
|
|
|
|
|
|
|
<!-- ios -->
|
|
|
|
<platform name="ios">
|
|
|
|
<config-file target="config.xml" parent="plugins">
|
|
|
|
<plugin name="InAppBrowser" value="CDVInAppBrowser" />
|
|
|
|
</config-file>
|
|
|
|
<header-file src="src/ios/CDVInAppBrowser.h" />
|
|
|
|
<source-file src="src/ios/CDVInAppBrowser.m" />
|
|
|
|
</platform>
|
|
|
|
|
2013-04-03 07:27:26 +08:00
|
|
|
</plugin>
|