bar-descriptor.xml 4.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  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>org.gameplay3d.sample_particles</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>Particles</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.7.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>Particles</description>
  22. <!-- Name of author which is used for signing. Must match the developer name of your development certificate. -->
  23. <author>RIM Canada</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. <transparent>false</transparent>
  31. </initialWindow>
  32. <category>core.games</category>
  33. <asset path="icon.png">icon.png</asset>
  34. <asset path="res/arial.gpb">res/arial.gpb</asset>
  35. <asset path="res/editor.form">res/editor.form</asset>
  36. <asset path="res/editor.png">res/editor.png</asset>
  37. <asset path="res/editor.theme">res/editor.theme</asset>
  38. <asset path="res/explosion.particle">res/explosion.particle</asset>
  39. <asset path="res/explosion.png">res/explosion.png</asset>
  40. <asset path="res/fire.particle">res/fire.particle</asset>
  41. <asset path="res/fire.png">res/fire.png</asset>
  42. <asset path="res/smoke.particle">res/smoke.particle</asset>
  43. <asset path="res/smoke.png">res/smoke.png</asset>
  44. <asset path="../../gameplay/res/logo_powered_white.png">res/logo_powered_white.png</asset>
  45. <asset path="../../gameplay/res/shaders">res/shaders</asset>
  46. <configuration id="com.qnx.qcc.configuration.exe.debug.242437683" name="Device-Debug">
  47. <platformArchitecture>armle-v7</platformArchitecture>
  48. <asset path="Device-Debug/sample-particles" entry="true" type="Qnx/Elf">sample-particles</asset>
  49. </configuration>
  50. <configuration id="com.qnx.qcc.configuration.exe.release.693953760" name="Device-Release">
  51. <platformArchitecture>armle-v7</platformArchitecture>
  52. <asset path="Device-Release/sample-particles" entry="true" type="Qnx/Elf">sample-particles</asset>
  53. </configuration>
  54. <configuration id="com.qnx.qcc.configuration.exe.debug.882133523" name="Simulator">
  55. <platformArchitecture>x86</platformArchitecture>
  56. <asset path="Simulator/sample-particles" entry="true" type="Qnx/Elf">sample-particles</asset>
  57. </configuration>
  58. <!-- The icon for the application, which should be 114x114. -->
  59. <icon>
  60. <image>icon.png</image>
  61. </icon>
  62. <!-- The splash screen that will appear when your application is launching, which should be 1280x768. -->
  63. <!-- <splashscreen></splashscreen> -->
  64. <!-- Request permission to execute native code. Required for native applications. -->
  65. <action system="true">run_native</action>
  66. <!-- The permissions requested by your application. -->
  67. <!-- <action>access_shared</action> -->
  68. <!-- <action>record_audio</action> -->
  69. <!-- <action>read_geolocation</action> -->
  70. <!-- <action>use_camera</action> -->
  71. <!-- <action>access_internet</action> -->
  72. <!-- <action>play_audio</action> -->
  73. <!-- <action>post_notification</action> -->
  74. <!-- <action>set_audio_volume</action> -->
  75. <!-- <action>read_device_identifying_information</action> -->
  76. <!-- Ensure that shared libraries in the package are found at run-time. -->
  77. <env var="LD_LIBRARY_PATH" value="app/native/lib"/>
  78. </qnx>