File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed
ProjectHeads/AllComponents/Uno/Platforms Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff 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"
Original file line number Diff line number Diff 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 ( )
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments