2015-04-17 09:53:28 +00:00
|
|
|
<?xml version=\"1.0\" encoding=\"utf-8\"?>
|
|
|
|
|
|
|
|
<Package
|
|
|
|
xmlns=\"http://schemas.microsoft.com/appx/manifest/foundation/windows10\"
|
|
|
|
xmlns:mp=\"http://schemas.microsoft.com/appx/2014/phone/manifest\"
|
|
|
|
xmlns:uap=\"http://schemas.microsoft.com/appx/manifest/uap/windows10\"
|
2017-06-13 08:00:16 +00:00
|
|
|
xmlns:uap3=\"http://schemas.microsoft.com/appx/manifest/uap/windows10/3\"
|
2016-01-25 12:22:34 +00:00
|
|
|
xmlns:mobile=\"http://schemas.microsoft.com/appx/manifest/mobile/windows10\"
|
2017-06-13 08:00:16 +00:00
|
|
|
IgnorableNamespaces=\"uap uap3 mp mobile\">
|
2015-04-17 09:53:28 +00:00
|
|
|
|
|
|
|
<Identity
|
|
|
|
Name=\"$${WINRT_MANIFEST.identity}\"
|
|
|
|
Publisher=\"$${WINRT_MANIFEST.publisherid}\"
|
2015-08-04 12:09:37 +00:00
|
|
|
Version=\"$${WINRT_MANIFEST.version}\"
|
|
|
|
ProcessorArchitecture=\"$${WINRT_MANIFEST.architecture}\" />
|
2015-04-17 09:53:28 +00:00
|
|
|
|
|
|
|
<mp:PhoneIdentity PhoneProductId=\"$${WINRT_MANIFEST.identity}\" PhonePublisherId=\"$${WINRT_MANIFEST.phone_publisher_id}\"/>
|
|
|
|
|
|
|
|
<Properties>
|
|
|
|
<DisplayName>$${WINRT_MANIFEST.name}</DisplayName>
|
|
|
|
<PublisherDisplayName>$${WINRT_MANIFEST.publisher}</PublisherDisplayName>
|
|
|
|
<Logo>$${WINRT_MANIFEST.logo_store}</Logo>
|
|
|
|
</Properties>
|
|
|
|
|
|
|
|
<Dependencies>
|
2016-08-22 14:06:02 +00:00
|
|
|
<TargetDeviceFamily Name=\"Windows.Universal\"
|
|
|
|
MinVersion=\"$${WINRT_MANIFEST.minVersion}\"
|
|
|
|
MaxVersionTested=\"$${WINRT_MANIFEST.maxVersionTested}\" />$${WINRT_MANIFEST.dependencies}
|
2015-04-17 09:53:28 +00:00
|
|
|
</Dependencies>
|
|
|
|
|
|
|
|
<Resources>
|
|
|
|
<Resource Language=\"en\"/>
|
|
|
|
</Resources>
|
|
|
|
|
|
|
|
<Applications>
|
|
|
|
<Application Id=\"App\"
|
|
|
|
Executable=\"$${WINRT_MANIFEST.target}.exe\"
|
|
|
|
EntryPoint=\"$${WINRT_MANIFEST.target}.App\">
|
|
|
|
<uap:VisualElements
|
|
|
|
DisplayName=\"$${WINRT_MANIFEST.name}\"
|
|
|
|
Description=\"$${WINRT_MANIFEST.description}\"
|
|
|
|
BackgroundColor=\"$${WINRT_MANIFEST.background}\"
|
|
|
|
Square150x150Logo=\"$${WINRT_MANIFEST.logo_150x150}\"
|
|
|
|
Square44x44Logo=\"$${WINRT_MANIFEST.logo_44x44}\">
|
|
|
|
|
|
|
|
<uap:SplashScreen Image=\"$${WINRT_MANIFEST.logo_620x300}\" />
|
|
|
|
</uap:VisualElements>
|
|
|
|
</Application>
|
|
|
|
</Applications>
|
2015-11-18 08:40:48 +00:00
|
|
|
$${WINRT_MANIFEST.capabilities}
|
2015-04-17 09:53:28 +00:00
|
|
|
</Package>
|