-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAppxManifest.xml
More file actions
59 lines (51 loc) · 2.14 KB
/
Copy pathAppxManifest.xml
File metadata and controls
59 lines (51 loc) · 2.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<?xml version="1.0" encoding="utf-8"?>
<Package
xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10"
xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10"
xmlns:rescap="http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities"
IgnorableNamespaces="uap rescap">
<Identity
Name="EachoneInformationChannel.CrewmateRushSpaceEscapeR"
Publisher="CN=CF437CC1-5A6E-4F84-B45D-A39F3D1BFEB6"
Version="1.0.0.0" />
<Properties>
<DisplayName>Crewmate Rush Space Escape Runner</DisplayName>
<PublisherDisplayName>Eachone Information Channel</PublisherDisplayName>
<Logo>assets\StoreLogo.png</Logo>
</Properties>
<Dependencies>
<TargetDeviceFamily Name="Windows.Universal" MinVersion="10.0.17763.0" MaxVersionTested="10.0.22621.0" />
</Dependencies>
<Resources>
<Resource Language="x-generate"/>
</Resources>
<Applications>
<Application Id="App"
Executable="wwahost.exe"
EntryPoint="Executables.App">
<uap:VisualElements
DisplayName="Crewmate Rush Space Escape Runner"
Description="High-speed space crewmate escape action runner game with custom skins, emergency tasks, and offline bot mode."
BackgroundColor="#0284c7"
Square150x150Logo="assets\Square150x150Logo.png"
Square44x44Logo="assets\Square44x44Logo.png">
<uap:DefaultTile
Square71x71Logo="assets\Square71x71Logo.png"
Square310x310Logo="assets\Square310x310Logo.png"
Wide310x150Logo="assets\Wide310x150Logo.png"
ShortName="Crewmate Rush">
<uap:ShowNameOnTiles>
<uap:ShowOn Tile="square150x150Logo"/>
<uap:ShowOn Tile="wide310x150Logo"/>
<uap:ShowOn Tile="square310x310Logo"/>
</uap:ShowNameOnTiles>
</uap:DefaultTile>
<uap:SplashScreen Image="assets\SplashScreen.png" BackgroundColor="#0f172a" />
<uap:LockScreen BadgeLogo="assets\BadgeLogo.png" NotificationResource="1" />
</uap:VisualElements>
</Application>
</Applications>
<Capabilities>
<Capability Name="internetClient" />
</Capabilities>
</Package>