UKismetSystemLibrary::RegisterForRemoteNotifications
#include "Kismet/KismetSystemLibrary.h"
Access: public
Specifiers: staticBlueprintCallable
Description
Requests permission to send remote (push) notifications to the user's device. Android and iOS only.
Caveats & Gotchas
- • On iOS this triggers the OS permission prompt; the result arrives asynchronously via platform notification delegates, not a return value from this call.
- • No-op on platforms other than Android and iOS — calling it elsewhere does nothing and is silently safe.
- • You still need platform-specific push service setup (APNs certificates, FCM keys) for notifications to actually be delivered.
Signature
static void RegisterForRemoteNotifications() Return Type
void Example
Request push permission at app start C++
UKismetSystemLibrary::RegisterForRemoteNotifications(); Tags
Version History
Introduced in: unknown
| Version | Status | Notes |
|---|---|---|
| 5.6 | stable | — |
Feedback
Was this helpful?