Skip to content

v10.1.0

Compare
Choose a tag to compare
@thudugala thudugala released this 14 Jan 03:02
· 101 commits to master since this release

#346 Added support to Ask for permissions on Android and iOS

Braking change

Now required the developer to request permission manually before sending notification

if (await LocalNotificationCenter.Current.AreNotificationsEnabled() == false)
{
    await LocalNotificationCenter.Current.RequestNotificationPermission();
}