We're using a UWP Webview on Windows 10 for one of our pages; in order to communicate with the application we want to use window.external.notify().
As documented here https://learn.microsoft.com/en-us/uwp/api/windows.ui.xaml.controls.webview.allowedscriptnotifyuris#Windows_UI_Xaml_Controls_WebView_AllowedScriptNotifyUris we have added all permutations of our sites domain to the content uri's section in Package.appxmanifest
However, window.external.notify is still undefined, has anyone experienced this. We have tried permutations as follows...
https://example.com
https://example.com/*
https://*.example.com/
https://*.example.com/*
But nothing has worked, any suggestions very much appreciated. (We know from debugging in the JS console that it is undefined)
As an alternative approach, we also tried deeplinking to ourselves instead, but that prompts every time 'AppFoo is trying to open AppFoo'
Many Thanks