bar-descriptor.xml 4.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  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_lua</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>Lua</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>2.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>Lua</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="game.config">game.config</asset>
  35. <asset path="../../gameplay/res/logo_powered_white.png">res/logo_powered_white.png</asset>
  36. <asset path="../../gameplay/res/shaders">res/shaders</asset>
  37. <asset path="res/ai.lua">res/ai.lua</asset>
  38. <asset path="res/game.lua">res/game.lua</asset>
  39. <asset path="res/arial.gpb">res/arial.gpb</asset>
  40. <asset path="res/lua.gpb">res/lua.gpb</asset>
  41. <asset path="res/lua.material">res/lua.material</asset>
  42. <asset path="res/lua.scene">res/lua.scene</asset>
  43. <asset path="res/lua-logo.png">res/lua-logo.png</asset>
  44. <configuration name="Device-Debug">
  45. <platformArchitecture>armle-v7</platformArchitecture>
  46. <asset path="Device-Debug/sample-lua" entry="true" type="Qnx/Elf">sample-lua</asset>
  47. </configuration>
  48. <configuration name="Device-Release">
  49. <platformArchitecture>armle-v7</platformArchitecture>
  50. <asset path="Device-Release/sample-lua" entry="true" type="Qnx/Elf">sample-lua</asset>
  51. </configuration>
  52. <configuration name="Simulator">
  53. <platformArchitecture>x86</platformArchitecture>
  54. <asset path="Simulator/sample-lua" entry="true" type="Qnx/Elf">sample-lua</asset>
  55. </configuration>
  56. <!-- The icon for the application, which should be 114x114. -->
  57. <icon>
  58. <image>icon.png</image>
  59. </icon>
  60. <!-- The splash screen that will appear when your application is launching. Should be 1280x720. -->
  61. <!-- <splashscreen></splashscreen> -->
  62. <!-- The permissions requested by your application. -->
  63. <!-- <action>access_shared</action> -->
  64. <!-- <action>record_audio</action> -->
  65. <!-- <action>read_geolocation</action> -->
  66. <!-- <action>use_camera</action> -->
  67. <!-- <action>access_internet</action> -->
  68. <!-- <action>play_audio</action> -->
  69. <!-- <action>post_notification</action> -->
  70. <!-- <action>set_audio_volume</action> -->
  71. <!-- <action>read_device_identifying_information</action> -->
  72. <!-- Ensure that shared libraries in the package are found at run-time. -->
  73. <env var="LD_LIBRARY_PATH" value="app/native/lib"/>
  74. </qnx>