Skip to content
Nate River edited this page May 29, 2019 · 30 revisions

How to add custom icons and sounds?

  • Those features are only available in paid plugin version. Please refer to plugin manual.

How to add red notification counters under the app icon?

  • This feature depends on your phone. For example, MIUI 10 shows red notification counters but ZUI don't.

Will notifications work after device reboot?

  • Basically Android erases all local notifications on reboot (as they are scheduled alarms). Paid plugin version recreates all scheduled notifications after reboot, that’s why it requires android.permission.RECEIVE_BOOT_COMPLETED permission.

How to schedule repeated notification every day at 18:00 o'clock?

  • First you'll need to calculate the delay to the nearest event. Pass this value to NotificationParams.Delay parameter. Then set NotificationParams.Repeat=true and NotificationParams.RepeatInterval=TimeSpan.FromDays(1)

var targetTime = new DateTime(DateTime.Now.Year, DateTime.Now.Month, DateTime.Now.Day, 18, 0, 0); if (targetTime < DateTime.Now) targetTime = targetTime.AddDays(1); var timeLeft = targetTime - DateTime.Now;

Could you please add iOS support?

  • Actually there is no need in this feature as iOS notifications work out of the box in Unity. You probably need to write a wrapper that manages both Android and iOS notifications.

Can I use free plugin in my commercial project?

  • Sure, you can!

Can I buy plugin source java-code?

  • Please email me, it depends on the project you are working on.
Clone this wiki locally