1<?xml version="1.0" encoding="utf-8"?> 2<Package xmlns="http://schemas.microsoft.com/appx/2010/manifest" xmlns:m2="http://schemas.microsoft.com/appx/2013/manifest" xmlns:m3="http://schemas.microsoft.com/appx/2014/manifest" xmlns:mp="http://schemas.microsoft.com/appx/2014/phone/manifest"> 3 4 <Identity Name="f99aa5a5-a6ee-47ec-a093-390b78afba3c" 5 Publisher="CN=Openh264" 6 Version="1.0.0.0" /> 7 8 <mp:PhoneIdentity PhoneProductId="5424cf29-908e-417e-93f3-f1cd81e5372c" PhonePublisherId="cb9bed24-05fd-451a-8736-6dad92946a6e"/> 9 10 <Properties> 11 <DisplayName>CodecApp</DisplayName> 12 <PublisherDisplayName>Openh264</PublisherDisplayName> 13 <Logo>Assets\StoreLogo.png</Logo> 14 </Properties> 15 16 <Prerequisites> 17 <OSMinVersion>6.3.1</OSMinVersion> 18 <OSMaxVersionTested>6.3.1</OSMaxVersionTested> 19 </Prerequisites> 20 21 <Resources> 22 <Resource Language="x-generate"/> 23 </Resources> 24 25 <Applications> 26 <Application Id="x5424cf29y908ey417ey93f3yf1cd81e5372cx" 27 Executable="AGHost.exe" 28 EntryPoint="MainPage.xaml"> 29 <m3:VisualElements 30 DisplayName="CodecApp" 31 Square150x150Logo="Assets\SquareTile150x150.png" 32 Square44x44Logo="Assets\Logo.png" 33 Description="CodecApp" 34 ForegroundText="light" 35 BackgroundColor="#464646"> 36 <m3:DefaultTile Square71x71Logo="Assets\SquareTile71x71.png"/> 37 <m3:SplashScreen Image="Assets\Splashscreen.png" /> 38 </m3:VisualElements> 39 <Extensions> 40 <Extension Category="windows.backgroundTasks" EntryPoint="AgHost.BackgroundTask"> 41 <BackgroundTasks> 42 <Task Type="systemEvent" /> 43 </BackgroundTasks> 44 </Extension> 45 </Extensions> 46 </Application> 47 </Applications> 48 <Capabilities> 49 </Capabilities> 50 <Extensions> 51 <Extension Category="windows.activatableClass.inProcessServer"> 52 <InProcessServer> 53 <Path>AgHostSvcs.dll</Path> 54 <ActivatableClass ActivatableClassId="AgHost.BackgroundTask" ThreadingModel="both" /> 55 </InProcessServer> 56 </Extension> 57 </Extensions> 58</Package>