Advertisement
Guest User

Untitled

a guest
Mar 7th, 2019
172
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 2.19 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Package
  3.  xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10"
  4.  xmlns:mp="http://schemas.microsoft.com/appx/2014/phone/manifest"
  5.  xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10"
  6.  IgnorableNamespaces="uap mp">
  7.             <Identity Name="APP-NAME" Publisher="PUBLISHER" Version="1.0.0.0" />
  8.         <mp:PhoneIdentity PhoneProductId="PhoneProductId" PhonePublisherId="PhonePublisherId"/>
  9.     <Properties>
  10.         <DisplayName>AppName</DisplayName>
  11.         <PublisherDisplayName>AppName</PublisherDisplayName>
  12.         <Logo>images\StoreLogo.png</Logo>
  13.     </Properties>
  14.     <Dependencies>
  15.         <TargetDeviceFamily Name="Windows.Universal" MinVersion="10.0.0.0" MaxVersionTested="10.0.0.0" />
  16.     </Dependencies>
  17.     <Resources>
  18.         <Resource Language="x-generate"/>
  19.     </Resources>
  20.     <Applications>
  21.         <Application Id="App" StartPage="https://dashboard.example.com/">
  22.             <uap:VisualElements DisplayName="AppName"
  23.              Description="My App Description."
  24.              BackgroundColor="#ffffff"
  25.              Square150x150Logo="images\Square150x150Logo.png"
  26.              Square44x44Logo="images\Square44x44Logo.png">
  27.                 <uap:SplashScreen Image="images\SplashScreen.png" BackgroundColor="#ffffff" />
  28.                 <uap:DefaultTile Wide310x150Logo="images\Wide310x150Logo.png" Square310x310Logo="images\Square310x310Logo.png">
  29.                     <uap:ShowNameOnTiles>
  30.                         <uap:ShowOn Tile="wide310x150Logo"/>
  31.                         <uap:ShowOn Tile="square310x310Logo" />
  32.                     </uap:ShowNameOnTiles>
  33.                 </uap:DefaultTile>
  34.                 <uap:InitialRotationPreference>
  35.                     <uap:Rotation Preference="landscape"/>
  36.                 </uap:InitialRotationPreference>
  37.             </uap:VisualElements>
  38.             <uap:ApplicationContentUriRules>
  39.                 <uap:Rule Type="include" Match="https://dashboard.example.com/" WindowsRuntimeAccess="all"/>
  40.             </uap:ApplicationContentUriRules>
  41.         </Application>
  42.     </Applications>
  43.     <Capabilities>
  44.         <Capability Name="internetClient" />
  45.  
  46.  
  47.     </Capabilities>
  48. </Package>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement