haihan jin
haihan jin

Reputation: 125

UWP Store 0x800701C5

I wrote a UWP program and I used Restricted capability

broadFileSystemAccess

When I published this application I obtained permission from Microsoft, and its now in the Microsoft Store.

My App

But when I tried to install it, it got an error:

Error

My computer: Windows 10 1809

I have tried googling this, and writing to Microsoft, both without finding a positive result.

Upvotes: 2

Views: 776

Answers (2)

luvwagn
luvwagn

Reputation: 1

I recommend to ensure to reference:

xmlns:rescap="http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities"
IgnorableNamespaces="uap mp rescap"

and:

<Capabilities>
    <rescap:Capability Name="broadFileSystemAccess" />
</Capabilities>

Upvotes: 0

Martin Zikmund
Martin Zikmund

Reputation: 39072

First, make sure the problem is actually only with your app by trying to install some other app if that will work.

If this happens only with your app, you should definitely contact Windows developer support for this issue. Select Contact us tab, then Windows 10 UWP app development and submit your incident. They should be able to help. You can also post the problem on the publishing Forum for greater visibility.

Posting incident

Upvotes: 1

Related Questions