2f7d0838b8
Add WINRT_MANIFEST.rotation_preference as description which orientation is allowed or preferred by the app. Valid values for Windows Phone are portrait, landscape, landscapeFlipped. WinRT also allows portraitFlipped Task-number: QTBUG-40830 Change-Id: I6b11afcdb72c2c158dadddafc5d90c1d18ab9d8b Reviewed-by: Andrew Knight <andrew.knight@theqtcompany.com>
46 lines
2.0 KiB
XML
46 lines
2.0 KiB
XML
<?xml version=\"1.0\" encoding=\"utf-8\"?>
|
|
<Package xmlns=\"http://schemas.microsoft.com/appx/2010/manifest\" xmlns:m3=\"http://schemas.microsoft.com/appx/2014/manifest\" xmlns:mp=\"http://schemas.microsoft.com/appx/2014/phone/manifest\">
|
|
<Identity
|
|
Name=\"$${WINRT_MANIFEST.identity}\"
|
|
ProcessorArchitecture=\"$${WINRT_MANIFEST.architecture}\"
|
|
Publisher=\"$${WINRT_MANIFEST.publisherid}\"
|
|
Version=\"$${WINRT_MANIFEST.version}\" />
|
|
<mp:PhoneIdentity
|
|
PhoneProductId=\"$${WINRT_MANIFEST.phone_product_id}\"
|
|
PhonePublisherId=\"$${WINRT_MANIFEST.phone_publisher_id}\" />
|
|
<Properties>
|
|
<DisplayName>$${WINRT_MANIFEST.name}</DisplayName>
|
|
<PublisherDisplayName>$${WINRT_MANIFEST.publisher}</PublisherDisplayName>
|
|
<Logo>$${WINRT_MANIFEST.logo_store}</Logo>
|
|
</Properties>
|
|
<Prerequisites>
|
|
<OSMinVersion>6.3.1</OSMinVersion>
|
|
<OSMaxVersionTested>6.3.1</OSMaxVersionTested>
|
|
</Prerequisites>
|
|
<Resources>
|
|
<Resource Language=\"en\" />
|
|
</Resources>
|
|
<Applications>
|
|
<Application
|
|
Id=\"App\"
|
|
Executable=\"$${WINRT_MANIFEST.target}.exe\"
|
|
EntryPoint=\"$${WINRT_MANIFEST.target}.App\">
|
|
<m3:VisualElements
|
|
DisplayName=\"$${WINRT_MANIFEST.name}\"
|
|
Description=\"$${WINRT_MANIFEST.description}\"
|
|
BackgroundColor=\"$${WINRT_MANIFEST.background}\"
|
|
ForegroundText=\"$${WINRT_MANIFEST.foreground}\"
|
|
Square150x150Logo=\"$${WINRT_MANIFEST.logo_large}\"
|
|
Square44x44Logo=\"$${WINRT_MANIFEST.logo_44x44}\">
|
|
<m3:DefaultTile Square71x71Logo=\"$${WINRT_MANIFEST.logo_71x71}\">
|
|
<m3:ShowNameOnTiles>
|
|
<m3:ShowOn Tile=\"square150x150Logo\" />
|
|
</m3:ShowNameOnTiles>
|
|
</m3:DefaultTile>
|
|
<m3:SplashScreen Image=\"$${WINRT_MANIFEST.logo_480x800}\" />$${WINRT_MANIFEST.rotation_preference}
|
|
</m3:VisualElements>
|
|
</Application>
|
|
</Applications>$${WINRT_MANIFEST.capabilities}$${WINRT_MANIFEST.dependencies}
|
|
</Package>
|
|
<!-- Generated by qmake using the $$[QMAKE_XSPEC] mkspec. -->
|