Mobile native Wearable native

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:

  • 1 or more (optional)

Expected children:

Child element Occurrences
<operation> 1 or more (optional)
<uri> 1 or more (optional)
<mime> 1 or more (optional)
<operation> element

Operation type of the application control.

Attributes:

  • http://tizen.org/appcontrol/operation/call
  • http://tizen.org/appcontrol/operation/compose
  • http://tizen.org/appcontrol/operation/create_content
  • http://tizen.org/appcontrol/operation/dial
  • http://tizen.org/appcontrol/operation/pick
  • http://tizen.org/appcontrol/operation/multi_share
  • http://tizen.org/appcontrol/operation/share
  • http://tizen.org/appcontrol/operation/view
<uri> element

URI scheme of the application control.

Attributes:

  • URI scheme string
<mime> element

MIME type of the application control.

Attributes:

  • MIME type string

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:

  • 1 or more (optional)

Attributes:

providerid attribute

ID of the data control provider.

Expected value:

  • String
access attribute

Access mode of the data control.

Expected value:

  • String
type attribute

Type of the data control.

Expected value:

  • String

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:

  • 1 (optional)

Expected value:

  • Icon path

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:

  • 1 or more (optional)

Attributes:

Expected value:

  • Label value in string
xml:lang attribute

Language of the label.

Expected value:

  • "<2-letter lowercase language code (ISO 639-1)>-<2-letter lowercase country code (ISO 3166-1 alpha-2)>"

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:

  • 1 or more (optional)

Attributes:

key attribute

Key of metadata.

Expected value:

  • String
value attribute

Value of metadata.

Expected value:

  • String

For example:

<metadata key="testkey" value="testvalue"/>
Go to top