Skip to content

Commit d5835a0

Browse files
committed
comment fix.
1 parent 8aa2aeb commit d5835a0

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

Sample/Direct/LocalNotification.Sample.Android/MainActivity.cs

+6-5
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,12 @@ protected override void OnCreate(Bundle savedInstanceState)
2323
global::Xamarin.Forms.Forms.Init(this, savedInstanceState);
2424

2525
// Must create a Notification Channel when API >= 26
26-
// Can created multiple Notification Channels with different names.
27-
NotificationCenter.CreateNotificationChannel(new Plugin.LocalNotification.Platform.Droid.NotificationChannelRequest
28-
{
29-
Sound = Resource.Raw.good_things_happen.ToString()
30-
});
26+
// you can created multiple Notification Channels with different names.
27+
NotificationCenter.CreateNotificationChannel(
28+
new Plugin.LocalNotification.Platform.Droid.NotificationChannelRequest
29+
{
30+
Sound = Resource.Raw.good_things_happen.ToString()
31+
});
3132

3233
LoadApplication(new App());
3334

0 commit comments

Comments
 (0)