Package.appxmanifest 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. <Package xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10" xmlns:mp="http://schemas.microsoft.com/appx/2014/phone/manifest" xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10" IgnorableNamespaces="uap mp">
  2. <Identity Name="com.esenthel.editor" Publisher="CN=Publisher" Version="58.0.0.0"/>
  3. <mp:PhoneIdentity PhoneProductId="83ecf4f3-fcad-4dcf-ae24-90bea9b32214" PhonePublisherId="00000000-0000-0000-0000-000000000000"/>
  4. <Properties>
  5. <DisplayName>Esenthel</DisplayName>
  6. <PublisherDisplayName>Publisher Name</PublisherDisplayName>
  7. <Logo>Assets\Logo.png</Logo>
  8. </Properties>
  9. <Dependencies>
  10. <TargetDeviceFamily Name="Windows.Universal" MinVersion="10.0.0.0" MaxVersionTested="10.0.0.0"/>
  11. </Dependencies>
  12. <Resources>
  13. <Resource Language="x-generate"/>
  14. </Resources>
  15. <Applications>
  16. <Application Id="App" Executable="$targetnametoken$.exe" EntryPoint="EE.FrameworkView">
  17. <uap:VisualElements DisplayName="Esenthel" Square150x150Logo="Assets\Square150x150Logo.png" Square44x44Logo="Assets\Square44x44Logo.png" Description="Esenthel" BackgroundColor="transparent">
  18. <uap:SplashScreen Image="Assets\SplashScreen.png" BackgroundColor="transparent"/>
  19. <uap:InitialRotationPreference>
  20. <uap:Rotation Preference="portrait"/>
  21. <uap:Rotation Preference="portraitFlipped"/>
  22. <uap:Rotation Preference="landscape"/>
  23. <uap:Rotation Preference="landscapeFlipped"/>
  24. </uap:InitialRotationPreference>
  25. </uap:VisualElements>
  26. </Application>
  27. </Applications>
  28. <Capabilities>
  29. <Capability Name="internetClient"/>
  30. <Capability Name="internetClientServer"/>
  31. <Capability Name="privateNetworkClientServer"/>
  32. <uap:Capability Name="removableStorage"/>
  33. <uap:Capability Name="userAccountInformation"/>
  34. <DeviceCapability Name="microphone"/>
  35. <DeviceCapability Name="location"/>
  36. </Capabilities>
  37. </Package>