bevy_ios_notifications 0.6.0

Bevy plugin to interact with iOS Notifications API
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#[cfg(target_os = "ios")]
mod channel;
#[cfg(target_os = "ios")]
mod native;
mod plugin;
mod resource;
#[cfg(target_os = "ios")]
include!(concat!(env!("OUT_DIR"), "/bevy_ios.notifications.rs"));

pub use plugin::{
    IosNotificationEvents, IosNotificationResponse, IosNotificationsPlugin,
    IosRemoteNotificationRegistration,
};
pub use resource::{IosNotificationRequest, IosNotificationTrigger, IosNotificationsResource};