No Description

Package.appxmanifest 1.6KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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
  8. Name="f9dbffb7-9062-4d4a-b665-0131622ae226"
  9. Publisher="CN=publisher"
  10. Version="1.0.0.0" />
  11. <mp:PhoneIdentity PhoneProductId="f9dbffb7-9062-4d4a-b665-0131622ae226" PhonePublisherId="00000000-0000-0000-0000-000000000000"/>
  12. <Properties>
  13. <DisplayName>ViewShotExample</DisplayName>
  14. <PublisherDisplayName>React Native for UWP</PublisherDisplayName>
  15. <Logo>Assets\StoreLogo.png</Logo>
  16. </Properties>
  17. <Dependencies>
  18. <TargetDeviceFamily Name="Windows.Universal" MinVersion="10.0.0.0" MaxVersionTested="10.0.0.0" />
  19. </Dependencies>
  20. <Resources>
  21. <Resource Language="x-generate"/>
  22. </Resources>
  23. <Applications>
  24. <Application Id="App"
  25. Executable="$targetnametoken$.exe"
  26. EntryPoint="ViewShotExample.App">
  27. <uap:VisualElements
  28. DisplayName="ViewShotExample"
  29. Square150x150Logo="Assets\Square150x150Logo.png"
  30. Square44x44Logo="Assets\Square44x44Logo.png"
  31. Description="ViewShotExample"
  32. BackgroundColor="transparent">
  33. <uap:DefaultTile Wide310x150Logo="Assets\Wide310x150Logo.png"/>
  34. <uap:SplashScreen Image="Assets\SplashScreen.png" />
  35. </uap:VisualElements>
  36. </Application>
  37. </Applications>
  38. <Capabilities>
  39. <Capability Name="internetClient" />
  40. </Capabilities>
  41. </Package>