Skip to content

Commit 9774002

Browse files
Merge pull request #293 from peterkissdeveloper/windowsfix
Fix the Windows scheme
2 parents 9f1cc21 + f8629fd commit 9774002

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

plugin.xml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -97,19 +97,19 @@
9797
<!-- windows -->
9898
<platform name="windows">
9999
<config-file target="package.windows.appxmanifest" parent="/Package/Applications/Application/Extensions">
100-
<Extension Category="windows.protocol" StartPage="www/index.html">
101-
<Protocol Name="$URL_SCHEME" />
102-
</Extension>
100+
<uap:Extension Category="windows.protocol" StartPage="www/index.html">
101+
<uap:Protocol Name="$URL_SCHEME" />
102+
</uap:Extension>
103103
</config-file>
104-
<config-file target="package.windows80.appxmanifest" parent="/Package/Applications/Application/Extensions">
105-
<Extension Category="windows.protocol" StartPage="www/index.html">
106-
<Protocol Name="$URL_SCHEME" />
107-
</Extension>
104+
<config-file target="package.windows10.appxmanifest" parent="/Package/Applications/Application/Extensions">
105+
<uap:Extension Category="windows.protocol" StartPage="www/index.html">
106+
<uap:Protocol Name="$URL_SCHEME" />
107+
</uap:Extension>
108108
</config-file>
109109
<config-file target="package.phone.appxmanifest" parent="/Package/Applications/Application/Extensions">
110-
<Extension Category="windows.protocol" StartPage="www/index.html">
111-
<Protocol Name="$URL_SCHEME" />
112-
</Extension>
110+
<uap:Extension Category="windows.protocol" StartPage="www/index.html">
111+
<uap:Protocol Name="$URL_SCHEME" />
112+
</uap:Extension>
113113
</config-file>
114114
<js-module src="www/windows/LaunchMyApp.js" name="LaunchMyApp">
115115
<clobbers target="window.plugins.launchmyapp" />

0 commit comments

Comments
 (0)