Additional Manifest Text Editor Elements
<app-control> Element
The <app-control> element represents Tizen application control configuration information.
<app-control> element | ||||||||
---|---|---|---|---|---|---|---|---|
Tizen application control configuration information. For more information on the relationship between the elements, see the element hierarchy. Occurrences:
Expected children:
|
<operation> element |
---|
Operation type of the application control. Attributes: |
name attribute |
---|
Name of the application control. Expected value: For example:
For more information on the expected values, see Common Application Controls. |
<uri> element |
---|
URI scheme of the application control. Attributes: |
name attribute |
---|
Name of the URI scheme. Expected value:
|
<mime> element |
---|
MIME type of the application control. Attributes: |
name attribute |
---|
Name of the MIME type. Expected value:
|
For example:
<app-control> <operation name="http://tizen.org/appcontrol/operation/compose"/> <uri name="testuristring"/> <mime name="application/pdf"/> </app-control>
<datacontrol> Element
The <datacontrol> element represents configuration information for the Tizen data controls.
<datacontrol> element |
---|
Set of configuration information for the Tizen data controls. For more information on the relationship between the elements, see the element hierarchy. Occurrences:
Attributes: |
providerid attribute |
---|
ID of the data control provider. Expected value:
|
access attribute |
---|
Access mode of the data control. Expected value:
|
type attribute |
---|
Type of the data control. Expected value:
|
For example:
<datacontrol access="WriteOnly" providerid="http://uiapp.com/datacontrol/provider/uiapp" type="Sql"/>
<icon> Element
The <icon> element represents the icon relative or absolute file path for the Tizen application.
<icon> element |
---|
Represents the icon relative or absolute file path. For more information on the relationship between the elements, see the element hierarchy. Occurrences:
Expected value:
|
For example:
<icon>testicon.png</icon>
<label> Element
The <label> element represents the label value for the Tizen application.
<label> element |
---|
Set of human readable names for the Tizen application according to the language. For more information on the relationship between the elements, see the element hierarchy. Occurrences:
Attributes: Expected value:
|
xml:lang attribute |
---|
Language of the label. Expected value:
|
For example:
<label>testlabel</label> <label xml:lang="en-gb">testlabel</label>
<metadata> Element
The <metadata> element represents user-defined key-value pairs for the application.
<metadata> element |
---|
User-defined key-value pairs for the application. For more information on the relationship between the elements, see the element hierarchy. Occurrences:
Attributes: |
key attribute |
---|
Key of metadata. Expected value:
|
value attribute |
---|
Value of metadata. Expected value:
|
For example:
<metadata key="testkey" value="testvalue"/>
<background-category> Element
The <background-category> element represents the category of the application running on the background.
Note |
---|
The <background-category> element is not supported for API versions lower than 2.4. An application with a <background-category> element can fail to be installed on devices with a Tizen version lower than 2.4. In this case, the element can be replaced with <metadata key="http://tizen.org/metadata/bacgkround-category/<value>"/>. |
<background-category> element |
---|
Category of the application that is allowed to run on the background. For more information on the relationship between the elements, see the Element hierarchy. Occurrences:
Attributes: |
value attribute |
---|
Value of the background category. Expected value:
|
For example:
<background-category value="download"/><!--For the API version 2.4 or later--> <metadata key="http://tizen.org/metadata/background-category/download"/><!--For the API version lower than 2.4-->