Agasper / unity-android-notifications

Unity3D Plugin for Android local notifications with example project
Other
555 stars 184 forks source link

Fix to issue: Push notification crash when app is closed #83 #89

Closed nikokahkonen closed 6 years ago

nikokahkonen commented 6 years ago

Android 8.x crashes if the notification is received while app is closed. This is due to channel creation, which leads to NullPointerException if done while app is not initially running. The notification channel creation should be done before creating the notification.

Agasper commented 6 years ago

Good job! Thanks!