I have developed a windows 10 universal app using Html,css and JS. For allowing inline scripts i am using ms-appx-web context and has set ms-appx-web:///login.html as start page in manifest.
I have added ApplicationContentUriRules in manifest file.
<uap:ApplicationContentUriRules>
<uap:Rule Match="ms-appx-web:///" Type="include" WindowsRuntimeAccess="all" /> </uap:ApplicationContentUriRules>
When I tried to create app package for my app in release mode, Windows App Certification Kit - Test Results shows Overall result: FAILED.
I am allowing microphone, video library and Internet access to app.
My app needs access to internet, microphone and video library. How can I resolve this issue and create my app package successfully using Certification Kit?
How can I handle app prelaunch without using WinJS Library?