@@ -123,7 +123,7 @@ private void InstantiateAllTestButtons()
123
123
m_groups [ "Modify" ] [ "Modify pending Explicit notification" ] = new Action ( ( ) => { ModifyExplicitNotification ( ) ; } ) ;
124
124
m_groups [ "Modify" ] [ "Cancel pending Explicit notification" ] = new Action ( ( ) => { CancelExplicitNotification ( ) ; } ) ;
125
125
m_groups [ "Modify" ] [ "Check status of Explicit notification" ] = new Action ( ( ) => { CheckStatusOfExplicitNotification ( ) ; } ) ;
126
-
126
+
127
127
128
128
m_groups [ "Send" ] = new OrderedDictionary ( ) ;
129
129
foreach ( AndroidNotificationTemplate template in Resources . LoadAll ( "AndroidNotifications" , typeof ( AndroidNotificationTemplate ) ) )
@@ -135,7 +135,7 @@ private void InstantiateAllTestButtons()
135
135
{
136
136
Title = template . Title ,
137
137
Text = template . Text ,
138
-
138
+
139
139
SmallIcon = template . SmallIcon ,
140
140
LargeIcon = template . LargeIcon ,
141
141
Style = template . NotificationStyle ,
@@ -244,7 +244,7 @@ private void InstantiateAllTestButtons()
244
244
ButtonCancelExplicitID . interactable = false ;
245
245
ButtonCheckStatusExplicitID = GameObject . Find ( "Modify/Check status of Explicit notification" ) . GetComponent < Button > ( ) ;
246
246
ButtonCheckStatusExplicitID . interactable = false ;
247
-
247
+
248
248
m_gameObjectReferences . ButtonGroupTemplate . gameObject . SetActive ( false ) ;
249
249
}
250
250
@@ -274,7 +274,7 @@ public void CheckStatusOfExplicitNotification()
274
274
{
275
275
m_LOGGER
276
276
. Blue ( $ "[{ DateTime . Now . ToString ( "HH:mm:ss.ffffff" ) } ] Explicit notification (ID:{ notificationExplicitID } ) status: { AndroidNotificationCenter . CheckScheduledNotificationStatus ( notificationExplicitID ) } ") ;
277
-
277
+
278
278
}
279
279
280
280
public void SendNotification ( AndroidNotification notification , string channel = "default_channel" , int notificationID = 0 , bool log = true )
0 commit comments