bar-descriptor.xml 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  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_spaceship</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>Spaceship</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>Spaceship</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/airstrip28.gpb">res/airstrip28.gpb</asset>
  35. <asset path="res/spaceship.gpb">res/spaceship.gpb</asset>
  36. <asset path="res/spaceship.wav">res/spaceship.wav</asset>
  37. <asset path="res//background.ogg">res/background.ogg</asset>
  38. <asset path="res/background.png">res/background.png</asset>
  39. <asset path="res/propulsion_glow.png">res/propulsion_glow.png</asset>
  40. <asset path="../../gameplay/res/logo_powered_white.png">res/logo_powered_white.png</asset>
  41. <asset path="../../gameplay/res/shaders">res/shaders</asset>
  42. <configuration id="com.qnx.qcc.configuration.exe.debug.1898582830" name="Device-Debug">
  43. <platformArchitecture>armle-v7</platformArchitecture>
  44. <asset path="Device-Debug/sample-spaceship" entry="true" type="Qnx/Elf">sample-spaceship</asset>
  45. </configuration>
  46. <configuration id="com.qnx.qcc.configuration.exe.release.791928190" name="Device-Release">
  47. <platformArchitecture>armle-v7</platformArchitecture>
  48. <asset path="Device-Release/sample-spaceship" entry="true" type="Qnx/Elf">sample-spaceship</asset>
  49. </configuration>
  50. <configuration id="com.qnx.qcc.configuration.exe.profile.1481263776" name="Device-Profile">
  51. <platformArchitecture>armle-v7</platformArchitecture>
  52. <asset path="Device-Profile/sample-spaceship" entry="true" type="Qnx/Elf">sample-spaceship</asset>
  53. </configuration>
  54. <configuration id="com.qnx.qcc.configuration.exe.profile.coverage.1388065949" name="Device-Coverage">
  55. <platformArchitecture>armle-v7</platformArchitecture>
  56. <asset path="Device-Coverage/sample-spaceship" entry="true" type="Qnx/Elf">sample-spaceship</asset>
  57. </configuration>
  58. <configuration id="com.qnx.qcc.configuration.exe.debug.1233004640" name="Simulator">
  59. <platformArchitecture>x86</platformArchitecture>
  60. <asset path="Simulator/sample-spaceship" entry="true" type="Qnx/Elf">sample-spaceship</asset>
  61. </configuration>
  62. <configuration id="com.qnx.qcc.configuration.exe.profile.1047868168" name="Simulator-Profile">
  63. <platformArchitecture>x86</platformArchitecture>
  64. <asset path="Simulator-Profile/sample-spaceship" entry="true" type="Qnx/Elf">sample-spaceship</asset>
  65. </configuration>
  66. <configuration id="com.qnx.qcc.configuration.exe.profile.coverage.134475205" name="Simulator-Coverage">
  67. <platformArchitecture>x86</platformArchitecture>
  68. <asset path="Simulator-Coverage/sample-spaceship" entry="true" type="Qnx/Elf">sample-spaceship</asset>
  69. </configuration>
  70. <!-- The icon for the application, which should be 114x114. -->
  71. <icon>
  72. <image>icon.png</image>
  73. </icon>
  74. <!-- The splash screen that will appear when your application is launching, which should be 1280x768. -->
  75. <!-- <splashscreen></splashscreen>-->
  76. <!-- Request permission to execute native code. Required for native applications. -->
  77. <action system="true">run_native</action>
  78. <!-- The permissions requested by your application. -->
  79. <!-- <action>access_shared</action> -->
  80. <!-- <action>record_audio</action> -->
  81. <!-- <action>read_geolocation</action> -->
  82. <!-- <action>use_camera</action> -->
  83. <!-- <action>access_internet</action> -->
  84. <!-- <action>play_audio</action> -->
  85. <!-- <action>post_notification</action> -->
  86. <!-- <action>set_audio_volume</action> -->
  87. <!-- <action>read_device_identifying_information</action> -->
  88. <!-- Ensure that shared libraries in the package are found at run-time. -->
  89. <env var="LD_LIBRARY_PATH" value="app/native/lib"/>
  90. </qnx>