Package.appxmanifest 2.0 KB

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