Skip to content

Instantly share code, notes, and snippets.

@jeff-r-koyaltech
Created August 16, 2015 15:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jeff-r-koyaltech/2f32eff6b042e172804d to your computer and use it in GitHub Desktop.
Save jeff-r-koyaltech/2f32eff6b042e172804d to your computer and use it in GitHub Desktop.
Full appxmanifest for TextSecure-UWP
<?xml version="1.0" encoding="utf-8"?>
<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">
<Identity Version="0.5.0.0" Name="39705SimonDieterle.TextSecure" Publisher="CN=D7D38CBF-3113-497A-88DB-52B717888A39" />
<mp:PhoneIdentity PhoneProductId="baaa3ed2-1f3a-4a86-91aa-b9c7c296e913" PhonePublisherId="043dd04d-998e-43b5-9450-82637d90e0a8" />
<Properties>
<DisplayName>TextSecure</DisplayName>
<PublisherDisplayName>Simon Dieterle</PublisherDisplayName>
<Logo>Assets\StoreLogo.png</Logo>
</Properties>
<Dependencies>
<TargetDeviceFamily Name="Windows.Universal" MinVersion="10.0.10069.0" MaxVersionTested="10.0.10069.0" />
</Dependencies>
<Resources>
<Resource Language="x-generate" />
</Resources>
<Applications>
<Application Id="App" Executable="$targetnametoken$.exe" EntryPoint="TextSecure.App">
<uap:VisualElements DisplayName="TextSecure" Square150x150Logo="Assets\Logo.png" Square44x44Logo="Assets\SmallLogo.png" Description="TextSecure" BackgroundColor="#464646">
<uap:DefaultTile ShortName="allLogos" Wide310x150Logo="Assets\SplashScreen.png" />
<uap:SplashScreen Image="Assets\SplashScreen.png" />
<uap:LockScreen Notification="badge" BadgeLogo="Assets\SplashScreen.png" />
</uap:VisualElements>
<Extensions>
<Extension Category="windows.backgroundTasks" EntryPoint="Tasks.PushReceiverTask">
<BackgroundTasks>
<Task Type="pushNotification" />
</BackgroundTasks>
</Extension>
<!--<Extension Category="windows.backgroundTasks" EntryPoint="Tasks.RegistrationTask">
<BackgroundTasks>
<Task Type="systemEvent"></Task>
</BackgroundTasks>
</Extension>-->
<!-- Required for curve25519 (for now). Would like NuGet to do this one day automatically. For now, it's manual. -->
<Extension Category="windows.activatableClass.inProcessServer">
<InProcessServer>
<Path>curve25519.dll</Path>
<ActivatableClass ActivatableClassId="curve25519.Curve25519Native" ThreadingModel="both" />
</InProcessServer>
</Extension>
</Extensions>
</Application>
</Applications>
<Capabilities>
<Capability Name="internetClient" />
<uap:Capability Name="contacts" />
</Capabilities>
</Package>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment