Skip to content
This repository was archived by the owner on May 1, 2024. It is now read-only.

Commit 90be89a

Browse files
authoredSep 28, 2020
Updating sample app icons (#332)
* Replacing Android AppIcons * Replacing iOS App Icons * Replacing UWP App Icons * Adding iOS Splash Screen * Adding Android SplashScreen
1 parent 7fb67f2 commit 90be89a

File tree

67 files changed

+610
-17
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

67 files changed

+610
-17
lines changed
 

‎XamarinCommunityToolkitSample.Android/MainActivity.cs

+2-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
namespace Xamarin.CommunityToolkit.Sample.Droid
88
{
9-
[Activity(Label = "XamarinCommunityToolkitSample", Icon = "@mipmap/icon", Theme = "@style/MainTheme", MainLauncher = true, ConfigurationChanges = ConfigChanges.ScreenSize | ConfigChanges.Orientation)]
9+
[Activity(Label = "XamarinCommunityToolkitSample", Icon = "@mipmap/icon", Theme = "@style/MainTheme", MainLauncher = false, ConfigurationChanges = ConfigChanges.ScreenSize | ConfigChanges.Orientation)]
1010
public class MainActivity : global::Xamarin.Forms.Platform.Android.FormsAppCompatActivity
1111
{
1212
protected override void OnCreate(Bundle savedInstanceState)
@@ -21,6 +21,7 @@ protected override void OnCreate(Bundle savedInstanceState)
2121
global::Xamarin.Forms.Forms.Init(this, savedInstanceState);
2222
LoadApplication(new App());
2323
}
24+
2425
public override void OnRequestPermissionsResult(int requestCode, string[] permissions, [GeneratedEnum] Permission[] grantResults)
2526
{
2627
Platform.OnRequestPermissionsResult(requestCode, permissions, grantResults);

0 commit comments

Comments
 (0)