LocalNotification streamlines the implementation of local notifications in Unity for iOS and Android platforms. Register timed notifications with a single method call, manage notification lifecycles effortlessly, and deliver timely alerts to your players across both major mobile platforms with minimal code.
Unity Project
Built with Unity 5.2.1f1 · download the source from GitHub
README
Rendered from GitHubUniLocalNotification
Description
UniLocalNotification is plugin for Unity that register/cancel localnotification easily. It works iOS and Android platform.
Usage
Add namespace
using LocalNotification;
Register notification
// Launch localnotificaion 30 secounds after
LocalNotificationManager.SetNotification ("message", 30, "title");
If only use iOS device, you need not define title as below.
LocalNotificationManager.SetNotification ("message", 30);
Cancel All Notification
LocalNotificationManager.CancelAllNotification();
You might want to call the method when applicaion resume;
Install
Use LocalNotification.unitypackage
Contribution
License
Author
Versions 0
No versions tracked yet.
Dependencies 0
No dependencies.
Changelog 0 releases
No changelog entries yet. Run the admin Changelog & Version Scanner to pull from the repository's CHANGELOG.md.
Comments
No comments yet. Be the first!


Sign in to join the conversation
Sign In