This repository has been archived on 2023-11-19. You can view files and clone it, but cannot push or open issues or pull requests.
goober-bb10/bar-descriptor.xml
2020-02-16 07:33:22 -08:00

121 lines
5.3 KiB
XML

<?xml version="1.0" encoding="utf-8" standalone="no"?>
<!--
Copyright (c) 2011-2015 BlackBerry Limited.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<qnx xmlns="http://www.qnx.com/schemas/application/1.0">
<!-- BlackBerry 10 application descriptor file.
Specifies parameters for identifying, installing, and launching native applications on BlackBerry 10.
-->
<!-- A universally unique application identifier. Must be unique across all BlackBerry 10 applications.
Using a reverse DNS-style name as the id is recommended. (Eg. com.example.ExampleApplication.) Required. -->
<id>com.monkeystew.Goober</id>
<configuration name="Device-Debug">
<platformArchitecture>armle-v7</platformArchitecture>
<asset path="arm/o.le-v7-g/Goober" entry="true" type="Qnx/Elf">Goober</asset>
<asset path="../bb-cascades-oauth/oauth/o.le-v7-g/libkqoauth.so" type="Qnx/Elf">lib/libkqoauth.so.1</asset>
</configuration>
<configuration name="Device-Release">
<entryPointType>Qnx/Cascades</entryPointType>
<platformArchitecture>armle-v7</platformArchitecture>
<asset path="arm/o.le-v7/Goober.so" entry="true" type="Qnx/Elf">Goober.so</asset>
<asset path="../bb-cascades-oauth/oauth/o.le-v7/libkqoauth.so" type="Qnx/Elf">lib/libkqoauth.so.1</asset>
</configuration>
<configuration name="Device-Profile">
<platformArchitecture>armle-v7</platformArchitecture>
<asset path="arm-p/o.le-v7-g/Goober" entry="true" type="Qnx/Elf">Goober</asset>
<asset path="../bb-cascades-oauth/oauth/o.le-v7/libkqoauth.so" type="Qnx/Elf">lib/libkqoauth.so.1</asset>
</configuration>
<configuration name="Simulator-Debug">
<platformArchitecture>x86</platformArchitecture>
<asset path="x86/o-g/Goober" entry="true" type="Qnx/Elf">Goober</asset>
<asset path="../bb-cascades-oauth/oauth/o-g/libkqoauth.so" type="Qnx/Elf">lib/libkqoauth.so.1</asset>
</configuration>
<!-- The name that is displayed in the BlackBerry 10 application installer.
May have multiple values for each language. See samples or xsd schema file. Optional. -->
<name>Goober</name>
<!-- 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.
Values can also be 1-part or 2-part. It is not necessary to have a 3-part value.
An updated version of application must have a versionNumber value higher than the previous version. Required. -->
<versionNumber>0.9.5</versionNumber>
<!-- Fourth digit segment of the package version. First three segments are taken from the
<versionNumber> element. Must be an integer from 0 to 2^16-1 -->
<description>the Goober application, a client for pnut.io</description>
<authorId>gYAAgP-_4D6fs0QDWOhZdtQjf2I</authorId>
<author>Morgan McMillian</author>
<buildIdFile>buildnum</buildIdFile>
<!-- A string value (such as "v1", "2.5", or "Alpha 1") that represents the version of the application, as it should be shown to users. Optional. -->
<!-- <versionLabel></versionLabel> -->
<!-- Description, displayed in the BlackBerry 10 application installer.
May have multiple values for each language. See samples or xsd schema file. Optional. -->
<!-- Copyright information. Optional. -->
<!-- <copyright></copyright> -->
<!-- Name of author which is used for signing. Must match the developer name of your development certificate. -->
<!-- Unique author ID assigned by signing authority. Required if using debug tokens. -->
<!-- <authorId>ABC1234YjsnUk235h</authorId> -->
<initialWindow>
<autoOrients>true</autoOrients>
<systemChrome>none</systemChrome>
</initialWindow>
<!-- The icon for the application, which should be 114x114. -->
<icon>
<image>Goober_110.png</image>
<image>Goober_144.png</image>
<image>Goober_90.png</image>
<image>Goober_96.png</image>
</icon>
<asset path="icon.png">icon.png</asset>
<asset path="assets">assets</asset>
<!-- Locale support -->
<asset path="translations" dest="qm">
<include name="*.qm"/>
</asset>
<asset path="Goober_110.png">Goober_110.png</asset>
<asset path="Goober_144.png">Goober_144.png</asset>
<asset path="Goober_90.png">Goober_90.png</asset>
<asset path="Goober_96.png">Goober_96.png</asset>
<!-- Request permission to execute native code. Required for native applications. -->
<permission system="true">run_native</permission>
<env var="LD_LIBRARY_PATH" value="app/native/lib:/usr/lib/qt4/lib"/>
<!-- invokation bits -->
<invoke-target id="com.monkeystew.goober.new">
<invoke-target-type>application</invoke-target-type>
<filter>
<action>bb.action.SHARE</action>
<mime-type>text/plain</mime-type>
</filter>
</invoke-target>
</qnx>