Unity android notification center

Unity Mobile Notifications Package

The runtime API is split into two parts: AndroidNotificationCenter and iOSNotificationCenter . These can be used to schedule and manage notifications for their respective platforms. You can download a sample Project which implements a high-level wrapper that you can use to send notifications to both Android and iOS with the same API from our GitHub page, or see the code samples below.

This package supports the following features:

  • Schedule local one-time or repeatable notifications.
  • Cancel already displayed and upcoming (scheduled) notifications.
  • Android:
    • Create and modify notification channels (categories) on Android Oreo and above.
    • Preserve notifications when the device restarts.
    • Set custom notification icons.
  • iOS:
    • Use the Apple Push Notification Service (APNs) to receive remote notifications.
    • Modify remote notification content if the device receives notifications from other apps while your app is running.
    • Group notifications into threads (only supported on iOS 12+).

Requirements:

  • Supports Android 4.4 (API 19) and iOS 10 or above.
  • Compatible with Unity 2018.3 or above.

Android

Create a notification channel

Every local notification must belong to a notification channel. Notification channels are only supported on Android 8.0 Oreo and above. On older Android versions, this package emulates notification channel behavior. Settings such as priority ( Importance ) set for notification channels apply to individual notifications even on Android versions prior to 8.0.

Send a simple notification

This example shows you how to schedule a simple text notification and send it to the notification channel you created in the previous step.

If you don’t specify a custom icon for each notification, the default Unity icon displays in the status bar instead. You can configure notification icons in the Project Settings **window (menu: **Edit > Project Settings > Mobile Notification Settings). Whenever you schedule a notification in your script, use the icon ID you define in the Mobile Notification Settings window.

You can optionally set a large icon which also displays in the notification view. The smaller icon displays as a small badge on top of the large one.

Unity assigns a unique identifier to each notification after you schedule it. You can use the identifier to track the notification status or to cancel it. Notification status tracking only works on Android 6.0 Marshmallow and above.

Use the following code example to check if your app has delivered the notification to the device and perform any actions depending on the result.

Preserve scheduled notifications after the device restarts

By default, apps remove scheduled notifications when the device restarts. To automatically reschedule all notifications when the user turns the device back on, enable the Reschedule Notifications on Device Restart setting in the Project Settings window (menu: Edit > Project Settings > Mobile Notification Settings). This adds the RECEIVE_BOOT_COMPLETED permissions to your app’s manifest.

Handle received notifications while the app is running

You can subscribe to the AndroidNotificationCenter.OnNotificationReceived event to receive a callback whenever the device receives a remote notification while your app is running.

Save custom data and retrieve it when the user opens the app from the notification

To store arbitrary string data in a notification object set the IntentData property.

If the user opens the app from the notification, you can retrieve it any and any data it has assigned to it like this:

If the app is opened in any other way, GetLastNotificationIntent returns null.

Request authorization

You need to request permission from the system to post local notifications and receive remote ones. If you intend to send the user remote notifications after they confirm the authorization request, you need to retrieve the DeviceToken . To do this, the request must be created with registerForRemoteNotifications set to true. For more information on how to send push notifications to a device and how to add push notification support to your app, see the Apple Developer website documentation.

Optionally, you can ask the user for permission to only send certain notification types. The example below shows how to request permission to show UI Alert dialogs and add a badge on the app icon. However, the user might change the authorization status for each notification type at any time in the settings app, so to check the actual authorization status, call iOSNotificationCenter.GetNotificationSettings .

Alternatively, you can enable the Request Authorization on App Launch **setting in the **Project Settings **window (menu: **Edit > Project Settings > Mobile Notification Settings), which makes the app automatically show a permissions request dialog when the user launches the app. Afterwards, you can call this method again to determine the current authorization status. The permissions request dialog won’t display again if the user has already granted or denied authorization.

Send a simple notification

The following code example cancels the notification if it doesn’t trigger:

The following code example removes the notification from the Notification Center if it was already shown to the user:

Other triggers

As well as the time interval trigger, you can use calendar and location triggers. All the fields in iOSNotificationCalendarTrigger are optional, but you need to set at least one field for the trigger to work. For example, if you only set the hour and minute fields, the system automatically triggers the notification on the next specified hour and minute.

You can also create location triggers if you want to schedule the delivery of a notification when the device enters or leaves a specific geographic region. Before you schedule any notifications with this trigger, your app must have authorization to use Core Location and must have when-in-use permissions. Use the Unity LocationService API to request this authorization. For additional information, see the Core Location documentation on the Apple Developer website.

In this example, the center coordinate is defined using the WGS 84 system. The app triggers the notification when the user enters an area within a 250 meter radius around the Eiffel Tower in Paris.

Handle received notifications when the app is running

If your app triggers a notification while it’s running, you can perform a custom action instead of showing a notification alert. By default, if your app triggers a local notification while it is in the foreground, the device won’t display an alert for that notification. If you want the notification to behave as though the device isn’t running the app, set the ShowInForeground property when you schedule the notification:

Alternatively, you can perform another action when the app triggers the notification. For example, you can display the notification content using the app’s UI. To do this, subscribe to the OnNotificationReceived event. Your app calls this event whenever a local or a remote notification is received, regardless if it’s shown in the foreground.

Читайте также:  Шадов оф лиманск андроид

To modify or hide the content of a remote notification your app receives while its running, subscribe to the OnRemoteNotificationReceived event. If you do this, the remote notification won’t display when your app is running. If you still want to show an alert for it, schedule a local notification using the remote notification’s content, like this:

Save custom data and retrieve it when the user opens the app from the notification

To store arbitrary string data in a notification object, set the Data property:

The following code example shows how to retrieve the last notification the app received:

If the user opens the app from a notification, GetLastRespondedNotification also returns that notification. Otherwise it returns null.

Why are small Android icons white in the editor notification settings preview ?

Small notification icons are required to be monochrome and Android ignores all non-alpha channels in the icon image, therefore Unity automatically strips all RGB channels. You can also provide icons by putting them in the \Assets\Plugins\Android\res\drawable- folder in that case they will not be automatically processed, however icons which contain non alpha channel will not be correctly displayed on Android 5.0 and above.

The notification color can be modified by setting the AndroidNotification.Color property.

Why are Notifications not delivered on certain Huawei and Xiaomi phones when my app is closed and not running in the background ?

Seems that Huawei (including Honor) and Xiaomi utilize aggresive batter saver techniques which restrict app background activities unless the app has been whitelisted by the user in device settings. This means that any scheduled notifications will not be delivered if the app is closed or not running in the bacgkround. We are not aware of any way to workaround this behaviour besides encouraging the user to whitelist your app.

What can I do if notifications with a location trigger don’t work?

Make sure you add the CoreLocation framework to your Project. You can do this in the Mobile Notification Settings menu in the Unity Editor (menu: Edit > Project Settings > Mobile Notification Settings) Alternatively, add it manually to the Xcode project, or use the Unity Xcode API. You also need to use the Location Service API to request permission for your app to access location data.

Источник

Unity android notification center

Unity3D Android notification plugin

  • Set delayed notification
  • Set delayed repeatable notification
  • Supports custom icon and large icon
  • Fully supports Unity 4.x, 5.x, 2017.x
  • Fully supports Android 4.0.3 — 8.0
  • Fully supports iOS 8.0 — 11.0

How to set up small icon ?

Use the Android Asset Studio notification icons generator (https://romannurik.github.io/AndroidAssetStudio/icons-notification.html) to prepare small icons pack and replace temporary icons named notify_icon_small.png with the new ones in *\UnityProject\Assets\Plugins\Android\res*

How to set up big icon ?

Same as small icon, but use launcher icons generator (https://romannurik.github.io/AndroidAssetStudio/icons-launcher.html) Just put the result into drawable directories *\UnityProject\Assets\Plugins\Android\res* with name notify_icon_big.png. And in the SendNotification method set bigIcon to «notify_icon_big».

If you want to use app icon just set bigIcon = «app_icon».

How to use a custom sound ?

For Android, place an .mp3 or .ogg sound file under Assets/Plugins/Android/res/raw in your Unity project. For iOS, place a .wav, .caf or .aiff sound under Assets/StreamingAssets. Make sure your Unity script that creates the notification sets the sound parameter to true and the soundName parameter to the name of your sound file, without an extension.

How to handle notification actions ?

When you create your Action, pass in a component (Like NotificationTest) that’s attached to a game object that’s guaranteed to be on your stage when your app starts. Also make sure that component has a method named «OnAction», or customize the name of the HandlerMethod when you create your Action. Whatever the name, the method must accept a single string parameter, which is the identifier of the action that was chosen.

On iOS, if you have more than one kind of notification with actions, make sure you use a different channel value for each kind.

How to create repeating notifications on iOS ?

iOS only supports repeat intervals of a minute, hour, day, 2-5 days (for ‘weekday’), week, month, quarter or year. Make sure your timeout is the correct number of milliseconds for one of those values, like 60 * 1000 for a minute.

How to recompile Android plugin ?

There is special gradle task called exportJar, just run it and grab plugin’s jar in app/release/notification.jar

How to get rid of obsolete warnings like «OBSOLETE — Providing Android resources in Assets/Plugins/Android/res is deprecated, please move your resources to an Android Library. See «Building Plugins for Android» section of the Manual.» ?

You can avoid this by recompiling plugin with icons (and optionally sounds) inside.

Источник

Android Mobile Notifications With Unity

In this tutorial, you’ll learn about Unity’s Mobile Notifications and how to create and schedule your very own notifications for a Unity app running on an Android device.

Version

Ding! Time to wake up.
Ding! You have an appointment in 30 minutes.
Ding! Tomorrow is your mother’s birthday.

Notifications are a common and valuable part of modern life, so it’s natural to expect your favorite mobile apps and games to use them too. In this tutorial, you’ll learn about Unity’s Mobile Notifications and how to create and schedule your very own notifications for a Unity app running on an Android device. Notifications will take your apps to the next level, helping you to retain user attention and also to keep your users informed.

Getting Started

Download the project by clicking the Download Materials button at the top or bottom of the tutorial.

Open the starter project and look at the folder structure in the Project window.

In Assets ► RW, you’ll find everything you need for the project:

  1. Scenes: Contains the NotificationTutorial scene.
  2. Scripts: Empty folder for the script you’ll create.
  3. Textures: Contains sample art for you to use.
  4. Prefabs: A sample interface for you to use.

Take a quick look at the NotificationTutorial scene in the Scenes folder. You’ll notice that it’s just an empty scene with nothing much going on. It represents a typical Unity app with no Notification capabilities. In the steps to follow, you’ll be adding some basic UI elements, you’ll also be adding the required components and scripts to enable this Unity app to send Notifications.

Now you’re ready to start getting noticed! :]

Setting the Scene

Since this is an Android tutorial, make sure you select Android as the platform in your Build Settings. Open the Package Manager and you’ll see that TextMeshPro and Mobile Notifications are already imported.

Open the NotificationTutorial scene inside the Scenes folder. You’ll find a very basic scene with a camera, a Screen Overlay Canvas and an EventSystem. Set your Game view to Portrait to match the default orientation configured in Project Settings ► Player.

Start by creating a title for the main page. Select Canvas in the Hierarchy, add a UI ► Text – TextMeshPro GameObject and call it Title. Give the text field a catchy name: Notation Tutorial.

Create an empty GameObject under Canvas to hold some buttons. Call it ButtonGroup and add a Horizontal Layout Group component to adjust the layout as you like. You can also adjust the RectTransform to suit your preferences.

Читайте также:  Чтобы не звонили неизвестные номера что сделать андроид

Next, create two buttons by selecting ButtonGroup in the Hierarchy and then right-clicking to select UI ► Button-TextMeshPro.

You’ll use the first button to send a single notification after a short delay, so name it ShortNote. Set the Text to Notify in 10 seconds.

You’ll use the second button to schedule a single notification after a long delay, so name it LongNote. Set the Text to Notify in one minute.

If you don’t want to set this up yourself, there’s a prefab ready to import in RW ► Prefabs.

The UI is now complete. Before implementing specific notifications, take a moment to consider why notifications are important for your app.

Using Notifications to Improve Retention

One of the primary benefits of notifications is the positive impact they have on player retention. Notifications help bring players back to a game they haven’t played in a while. These player lapses are often addressed on a 3-day, 7-day or 30-day cycle from the player’s last active session.

Notifications help players start a session at the right time via timers and alerts related to gameplay events. For example, you might notify players when the smithy has finished their brand new sword or their castle is under attack.

You can also use notifications to improve retention by alerting players about scheduled events and tournaments, whether created by the developer or other players.

All these examples are compelling reasons for a player to come back to a game, and notifications are a great way to remind players about those reasons.

Understanding Notifications

The notification itself has five parts that you’ll need to create and provide:

  1. Title: A short, bolded text.
  2. Description: A longer, non-bolded text.
  3. Small icon: A small, pure white icon that appears throughout the device UI.
  4. Large icon: A large, colored icon that only appears when space in the UI is available.
  5. Delivery date: The date and time when the app should notify the user.

As the app developer, you don’t control the device UI or how the user interacts with the notification – that’s the job of the device OS. Your job is to supply all five parts of the notification so the device OS can properly send the message according to a variety of user scenarios.

Now that you have an idea of the structure behind the notifications, it’s time to get your assets ready to go.

Prepping Assets

To have the best effect, your notifications shouldn’t only be timely, they should also be attractive. For that, you’ll need some artwork.

Unity’s Mobile Notifications Package provides an easy way to manage the art assets you need to create for notifications. This tutorial uses Mobile Notifications Package preview.5 – 1.0.4 from Unity’s Package Manager. You can find the Mobile Notifications Settings under Project Settings.

Your first step is to set up three icons:

  1. For Identifier icon-0 with Type Small Icon, select the icon_timer asset.
  2. Next, for Identifier icon_1, which has Type Large Icon, select the RW_Icon_macOS_256 asset.
  3. Finally, for Identifier alarm, with Type Small Icon, select the icon_notification_bell asset.

These identifiers need to match the script that you’ll create next. The settings dialog should look like this:

The scene also needs a way to process notifications.

To set these up, create an empty GameObject called NotificationManager. The scene hierarchy should now look like this:

Select that GameObject and add a Game Notifications Manager component, which comes with the Mobile Notifications Package.

Inside Scripts, create a new C# script named NotificationManager. Attach that script to the NotificationManager GameObject as well.

Now that all the pieces are in place, it is time to connect them.

Initializing the System

Your next step will be to set up your system to send notifications by adding some important functions and declarations.”

To start, open the Notification Manager script in your favorite code editor and add these declarations to the script, above the class declaration:

  1. Working with time is a critical piece of managing notifications, and the DateTime functions within System provide many useful shortcuts.
  2. NotificationSamples provides access to the MobileNotifications API.

Just under the class declaration, add these variables:

  1. Create a private reference to the GameNotificationsManager class that can be used throughout the script.
  2. Declare variable ChannelId and set it to “game_channel0”.
  3. Declare variable ReminderChannelId and set it to “reminder_channel1”.
  4. Declare variable NewsChannelId and set it to “news_channel2”.

Channels are defined as global constants so other scripts can refer to them when setting/sending notifications.

Next, you’ll use the Awake function to provide a reference to the default Game Notifications Manager:

You also need to set up channels (mostly for Android) with the following code in Start:

Each GameNotificationChannel takes three parameters: an id that you created earlier, a short title, and a long title.

  1. Declare a new GameNotificationChannel variable c1 and set it to ChannelId, with a short title of “Game Alerts” and a long title of “Game notifications”.
  2. Declare a new GameNotificationChannel variable c2 and set it to NewsChannelId, with a short title of “News” and a long title of “News and Events”.
  3. Declare a new GameNotificationChannel variable c3 and set it to ReminderChannelId, with a short title of “Reminders” and a long title of “Reminders”.
  4. Now call the Initialize function, passing the channels you just declared.

The system has now been initialized with all the necessary variables to send a notification. Next, it is time to create a function that uses these variables.

Sending a Manual Notification

The core of the system is a generic method to queue a notification with a given set of parameters.

Add this function to the Notification Manager script.

While this may seem like a long and complex script, it is actually just a way to process the five required components of a notification. It performs several safety checks and organizes the information to pass to the Mobile Notifications Package before sending it along to the local device UI.

  1. Declare a new method called SendNotification that takes 8 parameters. Each one will be described below.
  2. Declare a new IGameNotification variable notification using the API method manager.CreateNotification() .
  3. Add a safety check if the API is unavailable to exit early.
  4. Set the title for the notification by setting the notification.Title variable to the title parameter
  5. Set the body text for the notification by setting the notification.Body variable to the body parameter
  6. If a channelId was passed, use it to set the notification.Group variable, otherwise use the default ChannelId that was set earlier.
  7. Set the time to deliver the notification by setting the notification.DeliveryTime variable to the deliveryTime parameter.
  8. Set the notification.SmallIcon variable to the smallIcon parameter.
  9. Set the notification.LargeIcon variable to the largeIcon parameter.
  10. Optionally, a badge number can be set to display on the application icon if a badgeNumber is passed, by assigning it to the notification.BadgeNumber variable.
  11. Now that all the possible parameters are assigned, declare a new PendingNotification variable notificationToDisplay using the API method manager.ScheduleNotification() and pass notification.
  12. Finally, pass along the optional reschedule bool parameter to notificationToDisplay.Reschedule .
Читайте также:  Модели сенсорного нокиа андроид

Now that you have a generic way to send a notification, it’s time to create specific implementations connecting to the UI buttons. Insert this code at the bottom of the script.

This creates a UI Buttons region in the script and sets up the matching references to the assets you selected in the Mobile Notifications Settings.

Implementing the ShortNote

First, you’ll create the ShortNote, which sends a notification quickly after the user presses the button.

To implement this feature, add this code to the UI Buttons region:

  1. Declare variable shortDelay and set it to 10. This is the number of seconds to wait before sending the notification.
  2. Declare variable title and set it to “Thanks for playing!”.
  3. Declare variable body and set it to “Hope you had fun!”.
  4. Declare variable deliverTime by passing shortDelay to DateTime.UtcNow.AddSeconds .
  5. Declare variable channel and set it to ChannelId .
  6. Then, all the required inputs are sent to the generic SendNotification for processing.

Implementing the LongNote

The LongNote implementation looks very similar, except that it allows for minor changes to timing and messaging.

Add this code to the UI Buttons region as well:

  1. Declare variable longDelay and set it to 60. This is the number of seconds to wait before sending the notification.
  2. Declare variable title and set it to “Play again soon!”.
  3. Declare variable body and set it to “We miss you!”.
  4. Declare variable deliverTime by passing longDelay to DateTime.UtcNow.AddSeconds .
  5. Declare variable channel and set it to ChannelId .
  6. Then, all the required inputs are sent to the generic SendNotification for processing.

Save the script and return to the editor. Now that the basic code exists, it’s time to connect it to the buttons in the UI.

Setting up the UI Buttons

In the Hierarchy, select the Button component of the ShortNote GameObject, create a new OnClick event by clicking the + button at the bottom-right and drag the NotificationManager GameObject into the newly-created OnClick slot. In the drop-down, select NotificationManager.ShortNote.

Repeat that step for the LongNote GameObject, assigning NotificationManager.LongNote.

Save the scene and the project. You’re ready to deploy a build to your Android device.

Test by clicking your new buttons and waiting for the notifications to appear. Try it with the app open and closed. The notifications should still appear as scheduled.

Congratulations, you have mastered the basics of notifications. Next, it’s time for something a little more advanced.

Scheduling a Group of Notifications

Retention reminders and scheduled events are powerful forms of notifications, which differ slightly from the basic time-delay format.

Retention Reminders

You should be able to cancel retention reminders if the player returns before they occur. For example, reminding the player to return 3-days, 7-days, and 30-days after their last session is a common approach.

If the player never returns, they’ll get three notifications on the 3rd, 7th and 30th day. But imagine they come back on the 5th day. The previously-scheduled reminders for the 7th and 30th day need to be canceled. And all three reminder days need to be reset from the new current play date.

To create retention reminders, add the following code to the Notification Manager:

If you think this looks a lot like both ShortNote and LongNote , you’re right! It’s simply a generic form that takes the amount of time to wait as a parameter. So you can call it with any amount of time that you need.

Scheduled Events

Scheduled events need to happen at a specific date and time, regardless of when the player last used the app. Maybe there’s a recurring event on the 15th of every month or a one-time event scheduled for a specific holiday, like Mother’s Day. DateTime.UtcNow.AddSeconds doesn’t help in this scenario, so you’ll need to create another specific function to schedule these notifications by adding the following code to the Notification Manager:

This one has the similar structure, but uses a different icon from the Mobile Notification Settings. It also has a helper for the helper: GetNextEvent , which helps translate an amount of time that you want to wait into the specific DateTime format that you need to send to SendNotification .

You can design similar functions to help you achieve any type of notification scheduling you need.

Starting Fresh

There are a couple of last pieces to put the entire puzzle together.

At the bottom of the Notification Manager, add a helper function that calls the retention reminder and event scheduling functions that you want:

  1. Schedule a retention reminder for 30 seconds
  2. Schedule another retention reminder for 70 seconds
  3. Schedule a third retention reminder for 100 seconds
  4. Schedule a specific event for 2 minutes in the future
  5. Schedule another specific event for 3 minutes in the future

There are many scenarios where scheduled notifications need to be replaced or updated. Add a step to the system flow that removes all previously-scheduled notifications. Every time the player launches the app, previously-scheduled notifications should be discarded and replaced with a fresh set of notifications scheduled from the current playdate.

To implement this feature, add this line to the Start section of Notification Manager:

Finally, call the ScheduleCurrentNotifications function at the bottom of Start of the Notification Manager. The full Start function should look like this:

Save the NotificationManager script – it’s now complete.

Return to the editor to save the project and deploy it to your Android device. The UI buttons should work the same as before, now the additional notifications fire on the device after you load it. Close and open the app to observe which notifications reset over time.

Congratulations! You’ve mastered advanced notifications.

Overusing Notifications

Armed with your new notification skills, you wield great power that comes with great responsibility, as the cliché goes. While notifications are great when used well, it only takes one annoying notification to get the user to turn off ALL notifications coming from your app.

Even important notifications, like reminders for your mother’s birthday, that arrive too often or in the middle of the night can frustrate the user enough to turn off ALL future reminders. So be conservative when selecting and scheduling which notifications to send.

Where to Go From Here?

Great job on completing this tutorial! You can download the completed project files by clicking the Download Materials button at the top or bottom of the tutorial.

Feel free to tweak the project to your needs and turn it into something that gets you noticed. :]

The Unity Mobile Notifications Package will continue to evolve, so follow the latest updates here: Unity Mobile Notifications Package.

If you’re interested in notifications on iOS, watch our Push Notifications Video Course or read our book, Push Notifications by Tutorials.

I hope you enjoyed this tutorial. If you have any questions or comments, please join the forum discussion below!

Источник

Оцените статью