Skip to content

Commit bc09949

Browse files
committed
fix: iOS icon size
1 parent 0792bb4 commit bc09949

File tree

11 files changed

+22
-42
lines changed

11 files changed

+22
-42
lines changed

build/templates/dotnet-install.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ steps:
2626

2727
- powershell: |
2828
& dotnet tool update --global uno.check --version ${{ parameters.UnoCheck_Version }} --add-source https://api.nuget.org/v3/index.json
29-
& uno-check -v --ci --non-interactive --fix --skip ios --skip xcode --skip gtk3 --skip vswin --skip vsmac --skip androidsdk --skip androidemulator --manifest ${{ parameters.UnoCheck_Manifest }}
29+
& uno-check -v --ci --non-interactive --fix --target android --skip xcode --skip gtk3 --skip vswin --skip vsmac --skip androidsdk --skip androidemulator --manifest ${{ parameters.UnoCheck_Manifest }}
3030
displayName: Install Android .NET Workloads | Uno Check
3131
errorActionPreference: continue
3232
ignoreLASTEXITCODE: true
@@ -35,7 +35,7 @@ steps:
3535

3636
- powershell: |
3737
& dotnet tool update --global uno.check --version ${{ parameters.UnoCheck_Version }} --add-source https://api.nuget.org/v3/index.json
38-
& uno-check -v --ci --non-interactive --fix --skip android --skip xcode --skip gtk3 --skip vswin --skip vsmac --skip androidsdk --skip androidemulator --manifest ${{ parameters.UnoCheck_Manifest }}
38+
& uno-check -v --ci --non-interactive --fix --target ios --skip xcode --skip gtk3 --skip vswin --skip vsmac --skip androidsdk --skip androidemulator --manifest ${{ parameters.UnoCheck_Manifest }}
3939
displayName: Install iOS .NET Workloads | Uno Check
4040
errorActionPreference: continue
4141
ignoreLASTEXITCODE: true

src/app/ApplicationTemplate.Mobile/ApplicationTemplate.Mobile.csproj

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -53,11 +53,11 @@
5353
<PropertyGroup>
5454
<AndroidCreatePackagePerAbi>False</AndroidCreatePackagePerAbi>
5555
<BundleAssemblies>False</BundleAssemblies>
56+
<RuntimeIdentifiers>android-arm;android-arm64;android-x86;android-x64</RuntimeIdentifiers>
5657
</PropertyGroup>
5758
<Choose>
5859
<When Condition="'$(Configuration)'=='Debug'">
5960
<PropertyGroup>
60-
<RuntimeIdentifiers>android-arm;android-arm64;android-x86;android-x64</RuntimeIdentifiers>
6161
<AndroidUseSharedRuntime>True</AndroidUseSharedRuntime>
6262
<UseHighDPIResources>False</UseHighDPIResources>
6363
<EmbedAssembliesIntoApk>False</EmbedAssembliesIntoApk>
@@ -152,7 +152,7 @@
152152
<PropertyGroup>
153153
<MtouchExtraArgs>$(MtouchExtraArgs) --setenv=MONO_GC_PARAMS=soft-heap-limit=512m,nursery-size=64m,evacuation-threshold=66,major=marksweep,concurrent-sweep</MtouchExtraArgs>
154154
<MtouchExtraArgs>$(MtouchExtraArgs) --xml=./iOS/LinkerExclusions.xml --linkskip=$(AssemblyName)</MtouchExtraArgs>
155-
<MtouchInterpreter>-all,ByteSize,Uno.Core.Extensions,Uno.Core.Extensions.Collections,Uno.Core.Extensions.Equality,Uno.Core.Extensions.Threading,Uno.Core.Extensions.Disposables,Uno.Core.Extensions.Logging,Nventive.Persistence.Reactive,Reactive.Annex,ReviewService.Abstractions,MallardMessageHandlers,FluentValidation,Chinook.DataLoader.Abstractions,Chinook.DynamicMvvm.Abstractions,Chinook.SectionsNavigation.Abstractions,Chinook.StackNavigation.Abstractions,Chinook.BackButtonManager.Abstractions,ApplicationTemplate.Business,Uno.Injectable,Chinook.DynamicMvvm.FluentValidation,Chinook.DataLoader.DynamicMvvm,Chinook.DataLoader</MtouchInterpreter>
155+
<MtouchInterpreter>-all,ByteSize,Uno.Core.Extensions,Uno.Core.Extensions.Collections,Uno.Core.Extensions.Equality,Uno.Core.Extensions.Threading,Uno.Core.Extensions.Disposables,Uno.Core.Extensions.Logging,Nventive.Persistence.Reactive,Reactive.Annex,ReviewService.Abstractions,MallardMessageHandlers,FluentValidation,Chinook.DataLoader.Abstractions,Chinook.DynamicMvvm.Abstractions,Chinook.SectionsNavigation.Abstractions,Chinook.StackNavigation.Abstractions,Chinook.BackButtonManager.Abstractions,ApplicationTemplate.Business,Uno.Injectable,Chinook.DynamicMvvm.FluentValidation,Chinook.DataLoader.DynamicMvvm,Chinook.DataLoader,Microsoft.Maui.Controls.HotReload.Forms</MtouchInterpreter>
156156
<!-- See https://github.com/unoplatform/uno/issues/9430 for more details. -->
157157
<MtouchExtraArgs>$(MtouchExtraArgs) --registrar:static</MtouchExtraArgs>
158158
<!-- See https://github.com/xamarin/xamarin-macios/issues/14812 for more details. -->
@@ -215,12 +215,8 @@
215215
</ItemGroup>
216216
<ItemGroup>
217217
<BundleResource Include="iOS\Resources\Assets\splashscreen_icon.png" />
218-
<BundleResource Include="iOS\Resources\Assets\splashscreen_icon%402x.png" />
219-
<BundleResource Include="iOS\Resources\Assets\splashscreen_icon%403x.png" />
220-
<!--
221-
Removing this fix release build.
222-
<InterfaceDefinition Include="iOS\LaunchScreen.storyboard" />
223-
-->
218+
<BundleResource Include="iOS\Resources\Assets\splashscreen_icon@2x.png" />
219+
<BundleResource Include="iOS\Resources\Assets\splashscreen_icon@3x.png" />
224220
<ImageAsset Include="iOS\Media.xcassets\AppIcons.appiconset\Contents.json">
225221
<Visible>false</Visible>
226222
</ImageAsset>
641 Bytes
Loading
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

0 commit comments

Comments
 (0)