This repository was archived by the owner on May 24, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbar-descriptor.xml
More file actions
139 lines (110 loc) · 5.88 KB
/
bar-descriptor.xml
File metadata and controls
139 lines (110 loc) · 5.88 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<!--
/*
* Copyright (C) 2012 Cornelius Hald <cornelius.hald@kodira.de>
*
* This file is part of Pattern.
*
* Pattern is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Pattern is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Pattern. If not, see <http://www.gnu.org/licenses/>.
*/
-->
<qnx xmlns="http://www.qnx.com/schemas/application/1.0">
<!-- BlackBerry Tablet OS application descriptor file.
Specifies parameters for identifying, installing, and launching native applications on BlackBerry Tablet OS.
-->
<!-- A universally unique application identifier. Must be unique across all BlackBerry Tablet OS applications.
Using a reverse DNS-style name as the id is recommended. (Eg. com.example.ExampleApplication.) Required. -->
<id>de.kodira.Pattern</id>
<!-- The name that is displayed in the BlackBerry Tablet OS application installer.
May have multiple values for each language. See samples or xsd schema file. Optional. -->
<name>Pattern</name>
<!-- A string value of the format <0-999>.<0-999>.<0-999> that represents application version which can be used to check for application upgrade.
Values can also be 1-part or 2-part. It is not necessary to have a 3-part value.
An updated version of application must have a versionNumber value higher than the previous version. Required. -->
<versionNumber>1.4.0</versionNumber>
<!-- Fourth digit segment of the package version. First three segments are taken from the
<versionNumber> element. Must be an integer from 0 to 2^16-1 -->
<buildId>1</buildId>
<!-- A string value (such as "v1", "2.5", or "Alpha 1") that represents the version of the application, as it should be shown to users. Optional. -->
<!--<versionLabel>Beta 2</versionLabel>-->
<!-- Description, displayed in the BlackBerry Tablet OS application installer.
May have multiple values for each language. See samples or xsd schema file. Optional. -->
<!-- We keep it short and don't translate it, because we know of no place where this actually shows. -->
<description>Pattern lets you set your wallpaper to beautiful patterns and colors. Choose amongst tousands of amazing patterns provided by colourlovers.com. All patterns are licensed under CC-BY-NC-SA.
</description>
<!-- Copyright information. Optional. -->
<!--<copyright>2012 Kodira</copyright>-->
<!-- Name of author which is used for signing. Must match the developer name of your development certificate. -->
<author>Kodira</author>
<authorId>gYAAgL_PcYLD7BBtneIZf-PifPE</authorId>
<!-- Unique author ID assigned by signing authority. Required if using debug tokens. -->
<!-- <authorId>ABC1234YjsnUk235h</authorId> -->
<initialWindow>
<aspectRatio>portrait</aspectRatio>
<autoOrients>false</autoOrients>
<systemChrome>none</systemChrome>
<transparent>false</transparent>
</initialWindow>
<!-- Use dark theme -->
<cascadesTheme>dark</cascadesTheme>
<!-- The category where the application appears. Either core.games or core.media. -->
<category>core.games</category>
<!--
<configuration name="Default">
<platformArchitecture>armle-v7</platformArchitecture>
<asset path="arm/o.le-v7-g/Pattern" entry="true" type="Qnx/Elf">Pattern</asset>
</configuration>
-->
<configuration name="Device-Debug">
<platformArchitecture>armle-v7</platformArchitecture>
<asset path="arm/o.le-v7-g/Pattern" entry="true" type="Qnx/Elf">Pattern</asset>
</configuration>
<configuration name="Device-Release">
<platformArchitecture>armle-v7</platformArchitecture>
<asset path="arm/o.le-v7/Pattern" entry="true" type="Qnx/Elf">Pattern</asset>
</configuration>
<!-- All assets like QML files and images -->
<asset path="assets">assets</asset>
<!-- The launch icon for the application, which should be 81x81. -->
<asset path="icon.png">icon.png</asset>
<icon>
<image>icon.png</image>
</icon>
<!-- The splash screen -->
<asset path="splash-768x1280.png">splash-768x1280.png</asset>
<asset path="splash-720x720.png">splash-720x720.png</asset>
<splashScreens>
<image>splash-768x1280.png</image>
<image>splash-720x720.png</image>
</splashScreens>
<!-- Locale support -->
<asset path="translations" dest="qm">
<include name="*.qm"/>
</asset>
<!-- Request permission to execute native code. Required for native applications. -->
<permission system="true">run_native</permission>
<permission>access_internet</permission>
<permission>access_shared</permission>
<env var="LD_LIBRARY_PATH" value="app/native/lib:/usr/lib/qt4/lib"/>
<!-- The permissions requested by your application. -->
<!-- <action>access_shared</action> -->
<!-- <action>record_audio</action> -->
<!-- <action>read_geolocation</action> -->
<!-- <action>use_camera</action> -->
<!-- <action>access_internet</action> -->
<!-- <action>play_audio</action> -->
<!-- <action>post_notification</action> -->
<!-- <action>set_audio_volume</action> -->
<!-- <action>read_device_identifying_information</action> -->
</qnx>