Skip to content

Commit

Permalink
brough back appmanifest
Browse files Browse the repository at this point in the history
  • Loading branch information
ghuotvez committed Jan 27, 2023
1 parent 80f7ff9 commit 5405cb6
Show file tree
Hide file tree
Showing 2 changed files with 49 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ GSCFieldApp/ESRIRuntimeLicence.cs
*.user
*.userosscache
*.sln.docstates
*.appxmanifest


# User-specific files (MonoDevelop/Xamarin Studio)
*.userprefs
Expand Down
48 changes: 48 additions & 0 deletions GSCFieldApp/Package.appxmanifest
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
<?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 Name="NaturalResourcesCanada.GeologicalSurveyCanadaField" Publisher="CN=Geological Survey of Canada, O=Natural Resources Canada, C=CA" Version="2.2.58.0" />
<mp:PhoneIdentity PhoneProductId="b9976d28-84bd-4232-8ea7-a89944093fc1" PhonePublisherId="00000000-0000-0000-0000-000000000000" />
<Properties>
<DisplayName>Geological Survey Canada Field Application</DisplayName>
<PublisherDisplayName>Natural Resources Canada</PublisherDisplayName>
<Logo>Assets\StoreLogo.png</Logo>
</Properties>
<Dependencies>
<TargetDeviceFamily Name="Windows.Universal" MinVersion="10.0.0.0" MaxVersionTested="10.0.0.0" />
</Dependencies>
<Resources>
<Resource Language="x-generate" />
</Resources>
<Applications>
<Application Id="App" Executable="$targetnametoken$.exe" EntryPoint="GSCFieldApp.App">
<uap:VisualElements DisplayName="Geological Survey Canada Field Application" Square150x150Logo="Assets\Square150x150Logo.png" Square44x44Logo="Assets\Square44x44Logo.png" Description="Geological Survey of Canada on field application." BackgroundColor="transparent">
<uap:DefaultTile ShortName="GSC Logo">
</uap:DefaultTile>
<uap:SplashScreen Image="Assets\SplashScreen.png" BackgroundColor="#710B2C" />
</uap:VisualElements>
<Extensions>
<uap:Extension Category="windows.fileSavePicker">
<uap:FileSavePicker>
<uap:SupportedFileTypes>
<uap:FileType>.sqlite</uap:FileType>
</uap:SupportedFileTypes>
</uap:FileSavePicker>
</uap:Extension>
<uap:Extension Category="windows.fileTypeAssociation">
<uap:FileTypeAssociation Name="sqlite">
<uap:DisplayName>sqlite</uap:DisplayName>
<uap:SupportedFileTypes>
<uap:FileType>.sqlite</uap:FileType>
</uap:SupportedFileTypes>
</uap:FileTypeAssociation>
</uap:Extension>
</Extensions>
</Application>
</Applications>
<Capabilities>
<Capability Name="internetClient" />
<uap:Capability Name="removableStorage" />
<DeviceCapability Name="location" />
<DeviceCapability Name="serialcommunication"/>
</Capabilities>
</Package>

0 comments on commit 5405cb6

Please sign in to comment.