diff options
author | thexai <58434170+thexai@users.noreply.github.com> | 2021-07-06 17:18:12 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-06 17:18:12 +0200 |
commit | 71784887335c1208a79e5c997c4932e537144423 (patch) | |
tree | ec0141c61d725bec253f60c64e4d7b8ac3903276 /project | |
parent | 7294a76d5670b1f00e2b2b8bbb020ac26fd03bbf (diff) | |
parent | bb26fab39665d31ed6b6b59658b5f59fe6d446bf (diff) |
Merge pull request #19221 from tunip3/master
Fix 4k content crashing on series consoles
Diffstat (limited to 'project')
-rw-r--r-- | project/Win32BuildSetup/AppxManifest.xml.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/project/Win32BuildSetup/AppxManifest.xml.in b/project/Win32BuildSetup/AppxManifest.xml.in index e8d0959ab0..ac4cf6925c 100644 --- a/project/Win32BuildSetup/AppxManifest.xml.in +++ b/project/Win32BuildSetup/AppxManifest.xml.in @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="utf-8" standalone="yes"?> -<Package IgnorableNamespaces="uap" xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10" xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10" xmlns:rescap="http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities"> +<Package IgnorableNamespaces="uap rescap" xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10" xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10" xmlns:rescap="http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities"> <Identity Name="@PACKAGE_IDENTITY@" ProcessorArchitecture="@TARGET_ARCHITECTURE@" Publisher="CN=@PACKAGE_PUBLISHER@" Version="@VERSION_CODE@.0" /> <Properties> <DisplayName>@APP_NAME@</DisplayName> @@ -169,5 +169,6 @@ <uap:Capability Name="videosLibrary" /> <uap:Capability Name="removableStorage" /> <uap:Capability Name="picturesLibrary" /> + <rescap:Capability Name="expandedResources" /> </Capabilities> </Package> |