add screen size feature in manifest file
[apps/native/sample/BasicApp.git] / project / manifest.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <Manifest xmlns="http://schemas.tizen.org/2012/12/manifest">
3     <Id>$(manifestAppId)</Id>
4     <Version>2.0.0</Version>
5     <Type>C++App</Type>
6     <Requirements>
7         <Feature Name="http://tizen.org/feature/screen.size.normal">true</Feature>
8     </Requirements>
9     <Author/>
10     <Apps>
11         <ApiVersion>2.1</ApiVersion>
12         <Privileges/>
13         <UiApp Main="True" MenuIconVisible="True" Name="$(projectName)">
14             <UiScalability BaseScreenSize="Normal" CoordinateSystem="Logical" LogicalCoordinate="720"/>
15             <UiTheme SystemTheme="White"/>
16             <DisplayNames>
17                 <DisplayName Locale="eng-GB">$(projectName)</DisplayName>
18             </DisplayNames>
19             <Icons>
20                 <Icon Section="MainMenu" Type="Xhigh">mainmenu.png</Icon>
21             </Icons>
22         </UiApp>
23     </Apps>
24 </Manifest>