-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbar-descriptor.xml
More file actions
73 lines (55 loc) · 2.55 KB
/
bar-descriptor.xml
File metadata and controls
73 lines (55 loc) · 2.55 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<?xml version="1.0" encoding="UTF-8"?>
<qnx xmlns="http://www.qnx.com/schemas/application/1.0">
<id>com.example.Hawk</id>
<name>Hawk</name>
<versionNumber>1.0.0</versionNumber>
<buildId>10</buildId>
<description>Hawk Adventure</description>
<author>Mike Lattanzio</author>
<authorId>gYAAgEQn7sV0u_TVfQiyzYlDq1s</authorId>
<initialWindow>
<systemChrome>none</systemChrome>
<transparent>false</transparent>
<aspectRatio>landscape</aspectRatio>
<autoOrients>false</autoOrients>
</initialWindow>
<category>core.games</category>
<!-- Graphic resources -->
<asset path="Assets/Background.png">Background.png</asset>
<asset path="Assets/belligerent.png">belligerent.png</asset>
<asset path="Assets/button_pressed.png">button_pressed.png</asset>
<asset path="Assets/button_regular.png">button_regular.png</asset>
<asset path="Assets/leaderboard.png">leaderboard.png</asset>
<asset path="Assets/resting.png">resting.png</asset>
<asset path="Assets/icon.png">icon.png</asset>
<asset path="Assets/splash.png">splash.png</asset>
<asset path="Assets/belligerent_small.png">belligerent_small.png</asset>
<asset path="Assets/resting_small.png">resting_small.png</asset>
<asset path="Assets/ground.png">ground.png</asset>
<!-- Sound resources -->
<asset path="Assets/background.wav">background.wav</asset>
<asset path="Assets/blockfall.wav">blockfall.wav</asset>
<asset path="Assets/click1.wav">click1.wav</asset>
<asset path="Assets/click2.wav">click2.wav</asset>
<asset path="Assets/clickreverb.wav">clickreverb.wav</asset>
<!-- High score database -->
<asset path="Assets/scores.db">data/scores.db</asset>
<icon><image>icon.png</image></icon>
<splashScreens>splash.png</splashScreens>
<permission system="true">run_native</permission>
<!-- Permission needed for Scoreloop -->
<permission>play_audio</permission>
<env var="LD_LIBRARY_PATH" value="app/native/lib"/>
<configuration name="Device-Release">
<platformArchitecture>armle-v7</platformArchitecture>
<asset path="Device-Release/Hawk" entry="true" type="Qnx/Elf">Hawk</asset>
</configuration>
<configuration name="Device-Debug">
<platformArchitecture>armle-v7</platformArchitecture>
<asset path="Device-Debug/Hawk" entry="true" type="Qnx/Elf">Hawk</asset>
</configuration>
<configuration name="Simulator-Debug">
<platformArchitecture>x86</platformArchitecture>
<asset path="Simulator-Debug/Hawk" entry="true" type="Qnx/Elf">Hawk</asset>
</configuration>
</qnx>