template.bar-descriptor.xml 3.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. <?xml version="1.0" encoding="utf-8" standalone="no"?>
  2. <qnx xmlns="http://www.qnx.com/schemas/application/1.0">
  3. <!-- BlackBerry OS application descriptor file.
  4. Specifies parameters for identifying, installing, and launching native applications on BlackBerry OS.
  5. -->
  6. <!-- A universally unique application identifier. Must be unique across all BlackBerry 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 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. <!-- Description, displayed in the BlackBerry OS application installer.
  20. May have multiple values for each language. See samples or xsd schema file. Optional. -->
  21. <description>TEMPLATE_DESCRIPTION</description>
  22. <!-- Name of author which is used for signing. Must match the developer name of your development certificate. -->
  23. <author>TEMPLATE_AUTHOR</author>
  24. <!-- Unique author ID assigned by signing authority. Required if using debug tokens. -->
  25. <!-- <authorId>gYAAgPkLP1tZlyYP1wiMaRFFNMw</authorId> -->
  26. <initialWindow>
  27. <aspectRatio>landscape</aspectRatio>
  28. <autoOrients>false</autoOrients>
  29. <systemChrome>none</systemChrome>
  30. </initialWindow>
  31. <category>core.games</category>
  32. <asset path="icon.png">icon.png</asset>
  33. <asset path="res">res</asset>
  34. <asset path="GAMEPLAY_PATH/gameplay/res/shaders">res/shaders</asset>
  35. <asset path="GAMEPLAY_PATH/gameplay/res/ui">res/ui</asset>
  36. <configuration name="Device-Debug">
  37. <platformArchitecture>armle-v7</platformArchitecture>
  38. <asset path="Device-Debug/TEMPLATE_PROJECT" entry="true" type="Qnx/Elf">TEMPLATE_PROJECT</asset>
  39. </configuration>
  40. <configuration name="Device-Release">
  41. <platformArchitecture>armle-v7</platformArchitecture>
  42. <asset path="Device-Release/TEMPLATE_PROJECT" entry="true" type="Qnx/Elf">TEMPLATE_PROJECT</asset>
  43. </configuration>
  44. <configuration name="Simulator">
  45. <platformArchitecture>x86</platformArchitecture>
  46. <asset path="Simulator/TEMPLATE_PROJECT" entry="true" type="Qnx/Elf">TEMPLATE_PROJECT</asset>
  47. </configuration>
  48. <!-- The icon for the application, which should be 114x114. -->
  49. <icon>
  50. <image>icon.png</image>
  51. </icon>
  52. <!-- The splash screen that will appear when your application is launching. Should be 1280x720. -->
  53. <!-- <splashscreen></splashscreen> -->
  54. <!-- The permissions requested by your application. -->
  55. <!-- <action>access_shared</action> -->
  56. <!-- <action>record_audio</action> -->
  57. <!-- <action>read_geolocation</action> -->
  58. <!-- <action>use_camera</action> -->
  59. <!-- <action>access_internet</action> -->
  60. <!-- <action>play_audio</action> -->
  61. <!-- <action>post_notification</action> -->
  62. <!-- <action>set_audio_volume</action> -->
  63. <!-- <action>read_device_identifying_information</action> -->
  64. <!-- Ensure that shared libraries in the package are found at run-time. -->
  65. <env var="LD_LIBRARY_PATH" value="app/native/lib"/>
  66. </qnx>