-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathbar-descriptor.xml
53 lines (53 loc) · 3.11 KB
/
bar-descriptor.xml
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
<?xml version='1.0' encoding='UTF-8' standalone='no'?>
<qnx xmlns="http://www.qnx.com/schemas/application/1.0">
<id>com.pisarz1958.fluorescent</id>
<!-- The name that is displayed in the BlackBerry 10 application installer.
May have multiple values for each language. See samples or xsd schema file. Optional. -->
<name>Fluorescent</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>0.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></versionLabel> -->
<!-- Description, displayed in the BlackBerry 10 application installer.
May have multiple values for each language. See samples or xsd schema file. Optional. -->
<!-- Copyright information. Optional. -->
<!-- <copyright></copyright> -->
<!-- Name of author which is used for signing. Must match the developer name of your development certificate. -->
<description>Instant Messenger for BlackBerry OS and Symbian, written in Qt.</description>
<author>Maciej Janiszewski</author>
<!-- Unique author ID assigned by signing authority. Required if using debug tokens. -->
<!-- <authorId>ABC1234YjsnUk235h</authorId> -->
<initialWindow>
<autoOrients>true</autoOrients>
<systemChrome>none</systemChrome>
<transparent>false</transparent>
</initialWindow>
<asset path="%SRC_DIR%/icon.png">icon.png</asset>
<asset path="%SRC_DIR%/platforms/blackberry">assets</asset>
<asset path="%SRC_DIR%/platforms/symbian/images/accounts">assets/images/accounts</asset>
<!-- The icon for the application, which should be 114x114. -->
<icon>
<image>icon.png</image>
</icon>
<!-- Locale support -->
<asset path="%SRC_DIR%/translations" dest="qm">
<include name="*.qm"/>
</asset>
<!-- Request permission to execute native code. Required for native applications. -->
<permission system="true">run_native</permission>
<permission>post_notification</permission>
<permission>access_notify_settings_control</permission>
<permission>access_shared</permission>
<permission>run_when_backgrounded</permission>
<env var="LD_LIBRARY_PATH" value="/usr/lib/qt4/lib:$LD_LIBRARY_PATH"/>
<env var="CASCADES_THEME" value="dark"/>
<action system="true">run_native</action>
<asset entry="true" type="Qnx/Elf" path="Fluorescent">Fluorescent</asset>
<env var="QML_IMPORT_PATH" value="/usr/lib/qt4/imports:$QML_IMPORT_PATH"/>
<env var="QT_PLUGIN_PATH" value="/usr/lib/qt4/plugins:$QT_PLUGIN_PATH"/>
</qnx>