First pass at wp7 support

This commit is contained in:
Benn Mapes
2013-05-27 15:23:50 -07:00
parent 028fdf8b31
commit 9f8af5f464
2 changed files with 281 additions and 1 deletions
+13 -1
View File
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://www.phonegap.com/ns/plugins/1.0"
<plugin xmlns="http://cordova.apache.org/ns/plugins/1.0"
xmlns:android="http://schemas.android.com/apk/res/android"
id="org.apache.cordova.core.InAppBrowser"
version="0.1.0">
@@ -32,5 +32,17 @@ id="org.apache.cordova.core.InAppBrowser"
<header-file src="src/ios/CDVInAppBrowser.h" />
<source-file src="src/ios/CDVInAppBrowser.m" />
</platform>
<!-- wp7 -->
<platform name="wp7">
<config-file target="config.xml" parent="/*">
<feature name="InAppBrowser">
<param name="wp-package" value="InAppBrowser"/>
</feature>
</config-file>
<source-file src="src/wp7/InAppBrowser.cs" />
</platform>
</plugin>