Skip to content

Commit 77f1576

Browse files
committed
Fully qualify on all components
1 parent 81240f5 commit 77f1576

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

ProjectHeads/AllComponents/Uno/Platforms/Android/Main.Android.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ namespace CommunityToolkit.App.Uno;
55

66
[global::Android.App.ApplicationAttribute(
77
Label = "@string/ApplicationName",
8-
Icon = "@mipmap/iconapp",
8+
Icon = "@mipmap/icon",
99
LargeHeap = true,
1010
HardwareAccelerated = true,
1111
Theme = "@style/AppTheme"

ProjectHeads/AllComponents/Uno/Platforms/Desktop/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ internal class Program
77
public static void Main(string[] args)
88
{
99
var host = UnoPlatformHostBuilder.Create()
10-
.App(() => new App())
10+
.App(() => new CommunityToolkit.App.Shared.App())
1111
.UseX11()
1212
.UseLinuxFrameBuffer()
1313
.UseMacOS()

ProjectHeads/AllComponents/Uno/Platforms/WebAssembly/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ public class Program
66
public static async Task Main(string[] args)
77
{
88
var host = UnoPlatformHostBuilder.Create()
9-
.App(() => new App())
9+
.App(() => new CommunityToolkit.App.Shared.App())
1010
.UseWebAssembly()
1111
.Build();
1212

ProjectHeads/AllComponents/Uno/Platforms/iOS/Main.iOS.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ public class EntryPoint
88
public static void Main(string[] args)
99
{
1010
var host = UnoPlatformHostBuilder.Create()
11-
.App(() => new App())
11+
.App(() => new CommunityToolkit.App.Shared.App())
1212
.UseAppleUIKit()
1313
.Build();
1414

0 commit comments

Comments
 (0)