template.bar-descriptor.xml 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. <?xml version="1.0" encoding="utf-8" standalone="no"?>
  2. <qnx xmlns="http://www.qnx.com/schemas/application/1.0">
  3. <!-- BlackBerry Tablet OS application descriptor file.
  4. Specifies parameters for identifying, installing, and launching native applications on BlackBerry Tablet OS.
  5. -->
  6. <!-- A universally unique application identifier. Must be unique across all BlackBerry Tablet OS applications.
  7. Using a reverse DNS-style name as the id is recommended. (Eg. com.example.ExampleApplication.) Required. -->
  8. <id>TEMPLATE_UUID</id>
  9. <!-- The name that is displayed in the BlackBerry Tablet OS application installer.
  10. May have multiple values for each language. See samples or xsd schema file. Optional. -->
  11. <name>TEMPLATE_TITLE</name>
  12. <!-- 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.
  13. Values can also be 1-part or 2-part. It is not necessary to have a 3-part value.
  14. An updated version of application must have a versionNumber value higher than the previous version. Required. -->
  15. <versionNumber>1.0.0</versionNumber>
  16. <!-- Fourth digit segment of the package version. First three segments are taken from the
  17. <versionNumber> element. Must be an integer from 0 to 2^16-1 -->
  18. <buildId>1</buildId>
  19. <!-- 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. -->
  20. <!-- <versionLabel></versionLabel> -->
  21. <!-- Description, displayed in the BlackBerry Tablet OS application installer.
  22. May have multiple values for each language. See samples or xsd schema file. Optional. -->
  23. <description>TEMPLATE_DESCRIPTION</description>
  24. <!-- Copyright information. Optional. -->
  25. <!-- <copyright></copyright> -->
  26. <!-- Name of author which is used for signing. Must match the developer name of your development certificate. -->
  27. <author>TEMPLATE_AUTHOR</author>
  28. <!-- Unique author ID assigned by signing authority. Required if using debug tokens. -->
  29. <!-- <authorId>gYAAgPkLP1tZlyYP1wiMaRFFNMw</authorId> -->
  30. <platformVersion>2.0.0.7971</platformVersion>
  31. <initialWindow>
  32. <aspectRatio>landscape</aspectRatio>
  33. <autoOrients>false</autoOrients>
  34. <systemChrome>none</systemChrome>
  35. <transparent>false</transparent>
  36. </initialWindow>
  37. <!-- The category where the application appears. Either core.games or core.media. -->
  38. <category>core.games</category>
  39. <asset path="icon.png">icon.png</asset>
  40. <asset path="res">res</asset>
  41. <configuration id="com.qnx.qcc.configuration.exe.debug.242437683" name="Device-Debug">
  42. <platformArchitecture>armle-v7</platformArchitecture>
  43. <asset path="Device-Debug/TEMPLATE_PROJECT" entry="true" type="Qnx/Elf">TEMPLATE_PROJECT</asset>
  44. </configuration>
  45. <configuration id="com.qnx.qcc.configuration.exe.release.693953760" name="Device-Release">
  46. <platformArchitecture>armle-v7</platformArchitecture>
  47. <asset path="Device-Release/TEMPLATE_PROJECT" entry="true" type="Qnx/Elf">TEMPLATE_PROJECT</asset>
  48. </configuration>
  49. <configuration id="com.qnx.qcc.configuration.exe.profile.1278883794" name="Device-Profile">
  50. <platformArchitecture>armle-v7</platformArchitecture>
  51. <asset path="Device-Profile/TEMPLATE_PROJECT" entry="true" type="Qnx/Elf">TEMPLATE_PROJECT</asset>
  52. </configuration>
  53. <configuration id="com.qnx.qcc.configuration.exe.profile.coverage.357266346" name="Device-Coverage">
  54. <platformArchitecture>armle-v7</platformArchitecture>
  55. <asset path="Device-Coverage/TEMPLATE_PROJECT" entry="true" type="Qnx/Elf">TEMPLATE_PROJECT</asset>
  56. </configuration>
  57. <configuration id="com.qnx.qcc.configuration.exe.debug.882133523" name="Simulator">
  58. <platformArchitecture>x86</platformArchitecture>
  59. <asset path="Simulator/TEMPLATE_PROJECT" entry="true" type="Qnx/Elf">TEMPLATE_PROJECT</asset>
  60. </configuration>
  61. <configuration id="com.qnx.qcc.configuration.exe.profile.400335078" name="Simulator-Profile">
  62. <platformArchitecture>x86</platformArchitecture>
  63. <asset path="Simulator-Profile/TEMPLATE_PROJECT" entry="true" type="Qnx/Elf">TEMPLATE_PROJECT</asset>
  64. </configuration>
  65. <configuration id="com.qnx.qcc.configuration.exe.profile.coverage.48235134" name="Simulator-Coverage">
  66. <platformArchitecture>x86</platformArchitecture>
  67. <asset path="Simulator-Coverage/TEMPLATE_PROJECT" entry="true" type="Qnx/Elf">TEMPLATE_PROJECT</asset>
  68. </configuration>
  69. <!-- The icon for the application, which should be 86x86. -->
  70. <icon>
  71. <image>icon.png</image>
  72. </icon>
  73. <!-- The splash screen that will appear when your application is launching. Should be 1024x600. -->
  74. <!-- <splashscreen></splashscreen> -->
  75. <!-- Request permission to execute native code. Required for native applications. -->
  76. <action system="true">run_native</action>
  77. <!-- The permissions requested by your application. -->
  78. <!-- <action>access_shared</action> -->
  79. <!-- <action>record_audio</action> -->
  80. <!-- <action>read_geolocation</action> -->
  81. <!-- <action>use_camera</action> -->
  82. <!-- <action>access_internet</action> -->
  83. <!-- <action>play_audio</action> -->
  84. <!-- <action>post_notification</action> -->
  85. <!-- <action>set_audio_volume</action> -->
  86. <!-- <action>read_device_identifying_information</action> -->
  87. <!-- Ensure that shared libraries in the package are found at run-time. -->
  88. <env var="LD_LIBRARY_PATH" value="app/native/lib"/>
  89. </qnx>