#ios #android #notifications #cross-platform #api-bindings #pushnotifications

aloe-notifications

A comprehensive library for managing push notifications across iOS and Android platforms, allowing for detailed customization and integration of notification features. This crate is a translation of the c++ juce module serving the same function.

1 unstable release

Uses new Rust 2024

new 0.1.1 Apr 2, 2025

#182 in #notifications

29 downloads per month
Used in 5 crates (4 directly)

GPL-3.0 license

225KB
1.5K SLoC

Aloe Notifications

Aloe Notifications is a comprehensive Rust library engineered to facilitate the management and utilization of push notifications across various platforms, particularly iOS and Android. Designed for developers seeking a robust solution for handling both remote and local notifications, Aloe Notifications caters to diverse notification needs using well-defined structures and methods. The library integrates seamlessly into your application, ensuring effective communication with users through custom notifications.

Features

  • Cross-Platform Support: Unified interface for iOS and Android, leveraging their notification systems efficiently.
  • Notification Channel Management: On Android API level 26 or higher, manage channel settings including importance, sound, and vibration.
  • Flexible Notification Configuration: Customize notifications with actions, icons, priority levels, and more for a tailored user experience.
  • Persistent Settings Management: Interface for requesting and configuring notification settings, ensuring the application remains compliant with user preferences.
  • Advanced Handling: Support for grouping, ensuring notifications are presented in an organized manner.
  • Locale-Specific Customization: Adjust notifications based on device settings and user expectations.

Usage

Integrate Aloe Notifications into your project by including it as a dependency in your Cargo.toml:

[dependencies]
aloe-notifications = "0.1.0"

Example Code

use aloe_notifications::{PushNotification, PushNotifications};

fn main() {
    let mut push_notifications = PushNotifications::new();
    let notification = PushNotification::default();
    push_notifications.send_local_notification(&notification);
}

The above snippet demonstrates basic initialization and usage of the Aloe Notifications library to send a local notification.

Advanced Configuration

Utilize structures like PushNotificationSettings to finely tune the notification behaviors, such as allowing badges, alerts, and sound configurations. Implement the PushNotifications::setup_channels method on Android to initialize channels and maintain compliance with newer API requirements.

License

Aloe Notifications is licensed under the GPL-3.0 license.

Contributions and Feedback

Contributions are welcome! Please visit our GitHub repository to open issues or pull requests.


This README.md file was generated by an AI model and may not be 100% accurate; however, it should provide a good overview of the crate's capabilities and usage.

This crate is a translation of the JUCE module.

JUCE is a c++ software framework for developing high performance audio applications.

Usage falls under the GPLv3 as well as the JUCE commercial license.

See github.com/juce-framework/JUCE and the JUCE license page for details.

This crate is in the process of being translated from c++ to rust. For progress updates, please see the workspacer rust project. designed specifically for rust projects.

Dependencies

~15–25MB
~394K SLoC