blob: 738f4bb83cb2716f9576eefa1d6ed074d47bbc8b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<Manifest xmlns="http://schemas.tizen.org/2012/12/manifest">
<Id>$(manifestAppId)</Id>
<Version>1.0.0</Version>
<Type>C++App</Type>
<Author/>
<Descriptions/>
<Requirements/>
<Apps>
<ApiVersion >2.0</ApiVersion>
<Privileges/>
<UiApp Main="True" MenuIconVisible="True" Name="$(projectName)">
<UiScalability BaseScreenSize="Normal" CoordinateSystem="Logical" LogicalCoordinate="480"/>
<UiTheme SystemTheme="White"/>
<DisplayNames>
<DisplayName Locale="eng-GB">$(projectName)</DisplayName>
</DisplayNames>
<Icons>
<Icon Section="MainMenu" Type="Xhigh">mainmenu.png</Icon>
</Icons>
<AppControls/>
<LaunchConditions/>
<Notifications>
<Notification Name="Ticker">On</Notification>
<Notification Name="Sound">On</Notification>
<Notification Name="Contents">Off</Notification>
<Notification Name="Badge">On</Notification>
</Notifications>
</UiApp>
</Apps>
</Manifest>
|