Package.appxmanifest 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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. xmlns:rescap="http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities"
  7. IgnorableNamespaces="uap mp rescap">
  8. <Identity
  9. Name="56263bdbai.Maple"
  10. Publisher="CN=bdbai"
  11. Version="0.6.0.0" />
  12. <mp:PhoneIdentity PhoneProductId="b18d4afd-fd70-4477-8391-d605077b7858" PhonePublisherId="00000000-0000-0000-0000-000000000000"/>
  13. <Properties>
  14. <DisplayName>Maple</DisplayName>
  15. <PublisherDisplayName>bdbai</PublisherDisplayName>
  16. <Logo>Assets\StoreLogo.png</Logo>
  17. </Properties>
  18. <Dependencies>
  19. <TargetDeviceFamily Name="Windows.Universal" MinVersion="10.0.0.0" MaxVersionTested="10.0.0.0" />
  20. </Dependencies>
  21. <Resources>
  22. <Resource Language="x-generate" />
  23. </Resources>
  24. <Applications>
  25. <Application Id="App" Executable="$targetnametoken$.exe" EntryPoint="Maple_App">
  26. <uap:VisualElements DisplayName="Maple" Description="Maple flowers are green, yellow, orange or red."
  27. Square150x150Logo="Assets\Square150x150Logo.png" Square44x44Logo="Assets\Square44x44Logo.png" BackgroundColor="transparent">
  28. <uap:DefaultTile Wide310x150Logo="Assets\Wide310x150Logo.png" Square71x71Logo="Assets\SmallTile.png" Square310x310Logo="Assets\LargeTile.png">
  29. <uap:ShowNameOnTiles>
  30. <uap:ShowOn Tile="square150x150Logo"/>
  31. <uap:ShowOn Tile="wide310x150Logo"/>
  32. <uap:ShowOn Tile="square310x310Logo"/>
  33. </uap:ShowNameOnTiles>
  34. </uap:DefaultTile>
  35. <uap:SplashScreen Image="Assets\SplashScreen.png" />
  36. </uap:VisualElements>
  37. <Extensions>
  38. <Extension Category="windows.backgroundTasks" Executable="$targetnametoken$.exe" EntryPoint="Maple_Task.VpnTask" ResourceGroup="tunnel">
  39. <BackgroundTasks>
  40. <uap:Task Type="vpnClient" />
  41. </BackgroundTasks>
  42. </Extension>
  43. </Extensions>
  44. </Application>
  45. </Applications>
  46. <Capabilities>
  47. <Capability Name="internetClient" />
  48. <Capability Name="privateNetworkClientServer" />
  49. <Capability Name="internetClientServer" />
  50. <rescap:Capability Name="networkingVpnProvider" />
  51. </Capabilities>
  52. </Package>