https://github.com/ivanmurzak/unity-mobile-notifications-simplifier
Ready to use Android and iOS mobile notification solution based on official Unity Mobile Notifications package
https://github.com/ivanmurzak/unity-mobile-notifications-simplifier
android android-notifications ios ios-notifications mobile notifications unity unity-mobile unity-plugin unity2d unity3d unity3d-plugin
Last synced: 8 months ago
JSON representation
Ready to use Android and iOS mobile notification solution based on official Unity Mobile Notifications package
- Host: GitHub
- URL: https://github.com/ivanmurzak/unity-mobile-notifications-simplifier
- Owner: IvanMurzak
- License: mit
- Created: 2021-11-16T14:32:15.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2023-03-10T22:16:14.000Z (over 3 years ago)
- Last Synced: 2025-01-31T03:38:36.320Z (over 1 year ago)
- Topics: android, android-notifications, ios, ios-notifications, mobile, notifications, unity, unity-mobile, unity-plugin, unity2d, unity3d, unity3d-plugin
- Language: C#
- Homepage:
- Size: 67.4 KB
- Stars: 8
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Unity Mobile Notifications Simplifier
 [](https://openupm.com/packages/extensions.unity.notifications/)  [](https://stand-with-ukraine.pp.ua)
Ready to use Android and iOS mobile notification solution based on official Unity Mobile Notifications package. Build on top of [Unity Mobile Notifications](https://docs.unity3d.com/Packages/com.unity.mobile.notifications@1.4/manual/index.html) package. Supported codeless usage if needed but not required.

# How to use
### Option - code
- MobileNotifications.Send for sending notification right now.
- MobileNotifications.Schedule for schedule notification in right moment.
### Option - codeless
Add the NotificationSender component to any object in a scene or prefab. Call the function Send or Schedule using Button component for example.

# How to install - Option 1 (RECOMMENDED)
- Install [ODIN Inspector](https://odininspector.com/)
- Install [OpenUPM-CLI](https://github.com/openupm/openupm-cli#installation)
- Open command line in Unity project folder
- `openupm add extensions.unity.notifications`
# How to install - Option 2
- Install [ODIN Inspector](https://odininspector.com/)
- Add this code to /Packages/manifest.json
```json
{
"dependencies": {
"extensions.unity.notifications": "2.0.2",
},
"scopedRegistries": [
{
"name": "package.openupm.com",
"url": "https://package.openupm.com",
"scopes": [
"extensions.unity"
"com.cysharp",
"com.neuecc"
]
}
]
}