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="3ca438e0-162b-4834-885a-a7f2d6817d91" 5 Publisher="CN=Openh264" 6 Version="1.0.0.0" /> 7 8 <mp:PhoneIdentity PhoneProductId="37167e8c-fb5e-4000-b00b-99af2e01d9b7" PhonePublisherId="f32659ce-dc17-4ac4-869f-1bb44d5172c4"/> 9 10 <Properties> 11 <DisplayName>CodecUTApp</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="x37167e8cyfb5ey4000yb00by99af2e01d9b7x" 27 Executable="AGHost.exe" 28 EntryPoint="MainPage.xaml"> 29 <m3:VisualElements 30 DisplayName="CodecUTApp" 31 Square150x150Logo="Assets\SquareTile150x150.png" 32 Square44x44Logo="Assets\Logo.png" 33 Description="CodecUTApp" 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>