Skip to content

Commit

Permalink
fix: Adjust default plist values for net6 mobile targets
Browse files Browse the repository at this point in the history
  • Loading branch information
jeromelaban authored Apr 14, 2022
1 parent eed7596 commit 8fd4390
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleName</key>
<string>$ext_safeprojectname$</string>
<key>CFBundleDisplayName</key>
<string>$ext_safeprojectname$</string>
<key>CFBundleIdentifier</key>
Expand All @@ -12,9 +14,10 @@
<string>1.0</string>
<key>UIDeviceFamily</key>
<array>
<integer>1</integer>
<integer>2</integer>
</array>
<key>LSApplicationCategoryType</key>
<string>public.app-category.utilities</string>
<key>UILaunchStoryboardName</key>
<string>LaunchScreen</string>
<key>UISupportedInterfaceOrientations</key>
Expand All @@ -29,5 +32,12 @@
<array>
<string>Fonts/uno-fluentui-assets.ttf</string>
</array>

<!--
Adjust this to your application's encryption usage.
<key>ITSAppUsesNonExemptEncryption</key>
<false/>
-->

</dict>
</plist>
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,15 @@
<string>Portrait</string>
<key>UILaunchImageSize</key>
<string>{320, 568}</string>
<key>XSAppIconAssets</key>
<string>Media.xcassets/AppIcons.appiconset</string>
<key>UIApplicationSupportsIndirectInputEvents</key>
<true/>

<!--
Adjust this to your application's encryption usage.
<key>ITSAppUsesNonExemptEncryption</key>
<false/>
-->
</dict>
</plist>
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,21 @@
<string>APPL</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>LSApplicationCategoryType</key>
<string>public.app-category.utilities</string>
<key>NSHumanReadableCopyright</key>
<string>${AuthorCopyright:HtmlEncode}</string>
<key>NSPrincipalClass</key>
<string>NSApplication</string>
<key>XSAppIconAssets</key>
<string>Assets.xcassets/AppIcon.appiconset</string>
<string>Assets.xcassets/AppIcons.appiconset</string>
<key>ATSApplicationFontsPath</key>
<string>Fonts/uno-fluentui-assets.ttf</string>

<!--
Adjust this to your application's encryption usage.
<key>ITSAppUsesNonExemptEncryption</key>
<false/>
-->
</dict>
</plist>

0 comments on commit 8fd4390

Please sign in to comment.