From 661b39baadfdfc5285c4ce668440094d54365829 Mon Sep 17 00:00:00 2001 From: Rob Gibbens Date: Sat, 5 Feb 2022 16:50:51 -0500 Subject: [PATCH] Fix type of "InitilizeMedia" in MainActivity "Initialize" was spelled incorrectly. --- src/Mobile/Platforms/Android/MainActivity.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Mobile/Platforms/Android/MainActivity.cs b/src/Mobile/Platforms/Android/MainActivity.cs index 39fddbe..cd0d4a2 100644 --- a/src/Mobile/Platforms/Android/MainActivity.cs +++ b/src/Mobile/Platforms/Android/MainActivity.cs @@ -31,10 +31,10 @@ public class MainActivity : MauiAppCompatActivity instance = this; NotificationHelper.CreateNotificationChannel(ApplicationContext); if (mediaPlayerServiceConnection == null) - InitilizeMedia(); + InitializeMedia(); } - private void InitilizeMedia() + private void InitializeMedia() { mediaPlayerServiceIntent = new Intent(ApplicationContext, typeof(MediaPlayerService)); mediaPlayerServiceConnection = new MediaPlayerServiceConnection(this);