Add metadata profile xml file 68/273768/3
authorwn.jang <wn.jang@samsung.com>
Wed, 13 Apr 2022 10:38:09 +0000 (19:38 +0900)
committerwn.jang <wn.jang@samsung.com>
Wed, 13 Apr 2022 11:21:41 +0000 (20:21 +0900)
Change-Id: I34c62f51fef48d29ce505c5ba010f72d7b4194ba

packaging/metadata-profile.xml [new file with mode: 0644]

diff --git a/packaging/metadata-profile.xml b/packaging/metadata-profile.xml
new file mode 100644 (file)
index 0000000..6149419
--- /dev/null
@@ -0,0 +1,74 @@
+<?xml version="1.0" encoding="utf-8"?>
+<profile>
+    <metadata-define>
+        <key name="http://tizen.org/metadata/vc-engine/name" description="VC engine name"/>
+        <published>Y</published>
+        <version>1.0</version>
+        <value-description>
+            Write a VC engine name.
+        </value-description>
+        <default-value-description>
+            It does not work if there is no value.
+        </default-value-description>
+        <example description="Add below statement to the manifest.xml file of you process.">
+            <metadata key="http://tizen.org/metadata/vc-engine/name" value="Samsung voice control engine" />
+        </example>
+    </metadata-define>
+    <metadata-define>
+        <key name="http://tizen.org/metadata/vc-engine/language" description="Supported VC languages"/>
+        <published>Y</published>
+        <version>1.0</version>
+        <value-description>
+            Write supported langueges.
+        </value-description>
+        <default-value-description>
+            Language specified as an ISO 3166 alpha-2 two-letter country code followed by ISO 639-1 for the two-letter language code (for example, "ko_KR" for Korean, "en_US" for American English)
+        </default-value-description>
+        <example description="Add below statement to the manifest.xml file of you process.">
+            <metadata key="http://tizen.org/metadata/vc-engine/language" value="ko_KR,en_US" />
+        </example>
+    </metadata-define>
+    <metadata-define>
+        <key name="http://tizen.org/metadata/vc-engine/credential-required" description="Necessity of credential key"/>
+        <published>Y</published>
+        <version>1.0</version>
+        <value-description>
+            false - the credential key is not necessary.
+            true - the credential key is necessary.
+        </value-description>
+        <default-value-description>
+            Default value is false.
+        </default-value-description>
+        <example description="Add below statement to the manifest.xml file of you process.">
+            <metadata key="http://tizen.org/metadata/vc-engine/credential-required" value="false"/>
+        </example>
+    </metadata-define>
+    <metadata-define>
+        <key name="http://tizen.org/metadata/vc-engine/setting" description="Setting app name for VC engine"/>
+        <published>Y</published>
+        <version>1.0</version>
+        <value-description>
+            Write a setting app name for vc engine.
+        </value-description>
+        <default-value-description>
+            The setting app does not launch if there is no value.
+        </default-value-description>
+        <example description="Add below statement to the manifest.xml file of you process.">
+            <metadata key="http://tizen.org/metadata/vc-engine/setting" value="org.tizen.vc-engine-default-setting"/>
+        </example>
+    </metadata-define>
+    <metadata-define>
+        <key name="http://tizen.org/metadata/vc-engine/non-fixed-support" description="Whether to support non-fixed type command"/>
+        <published>Y</published>
+        <version>1.0</version>
+        <value-description>
+            Write whether to support non-fixed type command
+        </value-description>
+        <default-value-description>
+            Default value is false.
+        </default-value-description>
+        <example description="Add below statement to the manifest.xml file of you process.">
+            <metadata key="http://tizen.org/metadata/vc-engine/non-fixed-support" value="true"/>
+        </example>
+    </metadata-define>
+</profile>
\ No newline at end of file