Adding initial commit
This commit is contained in:
39
buildfiles/blackberry/template/bar-descriptor.xml
Normal file
39
buildfiles/blackberry/template/bar-descriptor.xml
Normal file
@@ -0,0 +1,39 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||
<qnx xmlns="http://www.qnx.com/schemas/application/1.0">
|
||||
|
||||
<id>::APP_PACKAGE::</id>
|
||||
<name>::APP_TITLE::</name>
|
||||
<description>::APP_DESCRIPTION::</description>
|
||||
|
||||
<author>::APP_COMPANY::</author>
|
||||
<authorId>::BLACKBERRY_AUTHOR_ID::</authorId>
|
||||
|
||||
<versionNumber>::APP_VERSION::</versionNumber>
|
||||
<buildId>::APP_BUILD_NUMBER::</buildId>
|
||||
|
||||
<initialWindow>
|
||||
|
||||
<systemChrome>none</systemChrome>
|
||||
<transparent>false</transparent>
|
||||
<!-- <autoOrients>true</autoOrients> -->
|
||||
::if (WIN_ORIENTATION == "landscape")::<autoOrients>false</autoOrients><aspectRatio>landscape</aspectRatio>::end::
|
||||
::if (WIN_ORIENTATION == "portrait")::<autoOrients>false</autoOrients><aspectRatio>portrait</aspectRatio>::end::
|
||||
|
||||
</initialWindow>
|
||||
|
||||
<env var="LD_LIBRARY_PATH" value="app/native"/>
|
||||
|
||||
<action system="true">run_native</action>
|
||||
|
||||
<category>core.games</category>
|
||||
|
||||
<asset entry="true" path="::APP_FILE_SAFE::" type="Qnx/Elf">::APP_FILE_SAFE::</asset>
|
||||
<asset path=".">.</asset>
|
||||
|
||||
::if (HAS_ICON)::<icon>
|
||||
::foreach ICONS:: <image>::__current__::</image>
|
||||
::end::</icon>::end::
|
||||
|
||||
<!-- <splashscreen>splashscreen.png</splashscreen>-->
|
||||
|
||||
</qnx>
|
||||
45
buildfiles/blackberry/template/config.xml
Normal file
45
buildfiles/blackberry/template/config.xml
Normal file
@@ -0,0 +1,45 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<widget xmlns="http://www.w3.org/ns/widgets" xmlns:rim="http://www.blackberry.com/ns/widgets" version="::APP_VERSION::" id="::APP_PACKAGE::">
|
||||
|
||||
<!-- <author href="http://www.example.com/" rim:copyright="Copyright 1998-2012 My Corp">My Corp</author>-->
|
||||
<author>::APP_COMPANY::</author>
|
||||
|
||||
<name>::APP_TITLE::</name>
|
||||
|
||||
<description>::APP_DESCRIPTION::</description>
|
||||
|
||||
<rim:permissions>
|
||||
<!-- <rim:permit>access_shared</rim:permit>
|
||||
<rim:permit>access_location_services</rim:permit>
|
||||
<rim:permit>use_camera</rim:permit> -->
|
||||
</rim:permissions>
|
||||
|
||||
::if (HAS_ICON)::::foreach ICONS:: <icon src="::__current__::" />::end::::end::
|
||||
|
||||
<!-- <rim:splash src="splash-1280x768.png"/>
|
||||
<rim:splash src="splash-768x1280.png"/> -->
|
||||
|
||||
<content src="index.html" rim:allowInvokeParams="true"/>
|
||||
|
||||
<feature id="blackberry.ui.dialog"/>
|
||||
|
||||
::if (WIN_ORIENTATION == "landscape")::<feature id="blackberry.app.orientation">
|
||||
<param name="mode" value="landscape" />
|
||||
</feature>::end::
|
||||
|
||||
::if (WIN_ORIENTATION == "portrait")::<feature id="blackberry.app.orientation">
|
||||
<param name="mode" value="portrait" />
|
||||
</feature>::end::
|
||||
|
||||
<feature id="blackberry.app">
|
||||
<param name="backgroundColor" value="0x::WIN_BACKGROUND::" />
|
||||
</feature>
|
||||
|
||||
<!-- <access uri="http://www.somedomain.com" subdomains="true">
|
||||
<feature id="blackberry.app" required="true" version="1.0.0"/>
|
||||
<feature id="blackberry.invoke" required="true" version="1.0.0"/>
|
||||
</access> -->
|
||||
|
||||
<!-- <license href="http://www.example.com/"/> -->
|
||||
|
||||
</widget>
|
||||
Reference in New Issue
Block a user