#push-notifications #firebase #android #notifications #api-bindings

aloe-android-notifications

Comprehensive crate for managing Android push notifications, supporting badge icons, priority settings, timestamp visibility, lock screen appearance, and group alert behaviors. This crate is a translation of the c++ juce module serving the same function.

1 unstable release

Uses new Rust 2024

new 0.1.2 Apr 2, 2025

#12 in #push-notifications

23 downloads per month
Used in aloe-exports

GPL-3.0 license

3MB
24K SLoC

Aloe Android Notifications

The aloe-android-notifications crate provides a robust and sophisticated API for managing and handling push notifications on Android devices. It supports advanced notification features introduced in Android API 26 and above, including badge icon customization, priority settings, lock screen display configurations, and group alert behaviors.

Features

  • Badge Icon Types: Customize the appearance of notification badge icons with options for none, small, or large options.
  • Notification Priority and Types: Set metadata for notifications to fine-tune handling based on priority and use case (e.g., alarm, message, promo, etc.).
  • Timestamp and Visibility Controls: Determine visibility and format of timestamps on notifications.
  • Lock Screen Appearance: Adjust how notifications appear when the device is locked.
  • Group Alert Behavior: Choose sound and vibration behavior for notification groups.

Usage

Ensure that notifications are correctly set up by downloading google_services.json from your Firebase project and configuring your Android exporter paths. Additionally, integrate image and sound resources, and set your app to single-task launch mode if required.

Example Code

#[cfg(target_os="android")]
impl PushNotificationsDemo {
    pub fn send_local_notification(&mut self) {
        let mut notification = PushNotifications::Notification::default();
        // Fill the required and optional parameters as necessary
        if notification.is_valid() {
            PushNotifications::getInstance().sendLocalNotification(notification);
        } else {
            // Handle the error
        }
    }
}

Integration

Add the following lines to include it in your Cargo.toml:

[dependencies]
aloe-android-notifications = "0.1.0"

Ensure integration in your Android project's manifest and other configurations as outlined in the setup instructions.

Contributing

We welcome contributions from the community. Please feel free to submit issues, requests, or pull requests on our GitHub repository.


This README.md file is generated by an AI model and may not be 100% accurate. However, it should be a good starting point for understanding the functionality and usage of the aloe-android-notifications crate.

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

~39MB
~630K SLoC