diff options
Diffstat (limited to 'project/manifest.xml')
-rw-r--r-- | project/manifest.xml | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/project/manifest.xml b/project/manifest.xml new file mode 100644 index 0000000..d1aa9fe --- /dev/null +++ b/project/manifest.xml @@ -0,0 +1,34 @@ +<?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> + <Descriptions> + <Description Locale="eng-GB"/> + </Descriptions> + <Url/> + <Requirements> + <Feature Name="http://tizen.org/feature/platform.core.cpu.arch">x86</Feature> + <Feature Name="http://tizen.org/feature/platform.core.fpu.arch">vfpv3</Feature> + <Feature Name="http://tizen.org/feature/screen.coordinate_system.logical">Normal</Feature> + </Requirements> + <Apps> + <ApiVersion>2.0</ApiVersion> + <Privileges> + <Privilege>http://tizen.org/privilege/web.privacy</Privilege> + <Privilege>http://tizen.org/privilege/web.service</Privilege> + </Privileges> + <UiApp HwAcceleration="On" Main="True" MenuIconVisible="True" Name="$(projectName)"> + <UiScalability BaseScreenSize="Normal" CoordinateSystem="Logical" LogicalCoordinate="720"/> + <UiTheme SystemTheme="White"/> + <DisplayNames> + <DisplayName Locale="eng-GB">$(projectName)</DisplayName> + </DisplayNames> + <Icons> + <Icon Section="MainMenu" Type="Xhigh">mainmenu.png</Icon> + </Icons> + <LaunchConditions/> + <Notifications/> + </UiApp> + </Apps> +</Manifest> |