Package.appxmanifest.in 1.6 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. IgnorableNamespaces="mp uap">
  7. <Identity Name="5a2cfb51-9dcf-4830-81e5-49472403b04d"
  8. Publisher="O=libsdl.org"
  9. Version="1.0.0.0" />
  10. <mp:PhoneIdentity
  11. PhoneProductId="5a2cfb51-9dcf-4830-81e5-49472403b04d"
  12. PhonePublisherId="00000000-0000-0000-0000-000000000000"/>
  13. <Properties>
  14. <DisplayName>$<TARGET_PROPERTY:NAME></DisplayName>
  15. <PublisherDisplayName>libsdl.org</PublisherDisplayName>
  16. <Logo>logo-50x50.png</Logo>
  17. </Properties>
  18. <Dependencies>
  19. <TargetDeviceFamily
  20. Name="Windows.Universal"
  21. MinVersion="10.0.0.0"
  22. MaxVersionTested="10.0.0.0" />
  23. </Dependencies>
  24. <Resources>
  25. <Resource Language="x-generate" />
  26. </Resources>
  27. <Applications>
  28. <Application Id="App"
  29. Executable="$<TARGET_PROPERTY:NAME>.exe"
  30. EntryPoint="$<TARGET_PROPERTY:NAME>.App">
  31. <uap:VisualElements
  32. DisplayName="$<TARGET_PROPERTY:NAME>"
  33. Description="$<TARGET_PROPERTY:NAME>"
  34. BackgroundColor="#FFFFFF"
  35. Square150x150Logo="square-150x150.png"
  36. Square44x44Logo="square-44x44.png">
  37. <uap:SplashScreen Image="splash-620x300.png" />
  38. </uap:VisualElements>
  39. </Application>
  40. </Applications>
  41. <Capabilities>
  42. <Capability Name="internetClient" />
  43. <DeviceCapability Name="microphone" />
  44. </Capabilities>
  45. </Package>