File tree 3 files changed +6
-6
lines changed
Source/Plugin.LocalNotification
3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ public partial class LocalNotificationCenter
16
16
/// Notify Local Notification Tapped.
17
17
/// </summary>
18
18
/// <param name="intent"></param>
19
- internal static void NotifyNotificationTapped ( Intent ? intent )
19
+ public static void NotifyNotificationTapped ( Intent ? intent )
20
20
{
21
21
try
22
22
{
@@ -50,7 +50,7 @@ internal static void NotifyNotificationTapped(Intent? intent)
50
50
/// This way, users can easily identify and control multiple notification channels that have identical names.
51
51
/// </summary>
52
52
/// <param name="groupChannelRequests"></param>
53
- internal static void CreateNotificationChannelGroups ( IList < NotificationChannelGroupRequest > groupChannelRequests )
53
+ public static void CreateNotificationChannelGroups ( IList < NotificationChannelGroupRequest > groupChannelRequests )
54
54
{
55
55
if ( ! OperatingSystem . IsAndroidVersionAtLeast ( 26 ) )
56
56
{
@@ -77,7 +77,7 @@ internal static void CreateNotificationChannelGroups(IList<NotificationChannelGr
77
77
/// Create Notification Channel when API >= 26.
78
78
/// </summary>
79
79
/// <param name="channelRequests"></param>
80
- internal static void CreateNotificationChannels ( IList < NotificationChannelRequest > channelRequests )
80
+ public static void CreateNotificationChannels ( IList < NotificationChannelRequest > channelRequests )
81
81
{
82
82
if ( ! OperatingSystem . IsAndroidVersionAtLeast ( 26 ) )
83
83
{
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ public partial class LocalNotificationCenter
16
16
/// and set it using this method
17
17
/// </summary>
18
18
/// <param name="notificationDelegate"></param>
19
- internal static void SetUserNotificationCenterDelegate ( UserNotificationCenterDelegate ? notificationDelegate = null )
19
+ public static void SetUserNotificationCenterDelegate ( UserNotificationCenterDelegate ? notificationDelegate = null )
20
20
{
21
21
UNUserNotificationCenter . Current . Delegate = notificationDelegate ?? new UserNotificationCenterDelegate ( ) ;
22
22
}
@@ -51,7 +51,7 @@ internal static void SetUserNotificationCenterDelegate(UserNotificationCenterDel
51
51
/// Reset Application Icon Badge Number when there are no notifications.
52
52
/// </summary>
53
53
/// <param name="uiApplication"></param>
54
- internal static void ResetApplicationIconBadgeNumber ( UIApplication uiApplication )
54
+ public static void ResetApplicationIconBadgeNumber ( UIApplication uiApplication )
55
55
{
56
56
try
57
57
{
Original file line number Diff line number Diff line change 21
21
<Description >The local notification plugin provides a way to show local notifications from MAUI apps.</Description >
22
22
<PackageIcon >icon.png</PackageIcon >
23
23
<Copyright >Copyright © Elvin (Tharindu) Thudugala</Copyright >
24
- <Version >11.1.0 </Version >
24
+ <Version >11.1.1 </Version >
25
25
<PackageReleaseNotes >Check: https://github.com/thudugala/Plugin.LocalNotification/releases </PackageReleaseNotes >
26
26
<IsPackable >True</IsPackable >
27
27
You can’t perform that action at this time.
0 commit comments