blob: 35bd343216b443c7500db5e0c0b5a593a0433c44 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns="http://tizen.org/ns/packages" package="@PACKAGE_NAME@" version="@VERSION@" install-location="internal-only">
<label>Settings</label>
<author email="opensource.rnd@samsung.com" href="www.samsung.com">Open Source RnD</author>
<description>Application for adjusting various configuration of the user device</description>
<ui-application appid="@PACKAGE_NAME@" exec="@BINDIR@/@PROJECT_NAME@" nodisplay="false" multiple="false" type="capp" taskmanage="true" landscape-effectimage="@DESKTOP_ICONDIR@/@PACKAGE_NAME@_4x2.png">
<label>Settings</label>
<icon>@DESKTOP_ICON@</icon>
</ui-application>
<privileges>
<privilege>http://tizen.org/privilege/network.get</privilege>
<privilege>http://tizen.org/privilege/network.set</privilege>
<privilege>http://tizen.org/privilege/network.profile</privilege>
<privilege>http://tizen.org/privilege/internal/dbus</privilege>
</privileges>
</manifest>
|