#midi #audio #android #bluetooth #multimedia

aloe-android

Aloe-Android provides comprehensive support for Android applications needing MIDI interfaces via Bluetooth, media management, and seamless Android component interaction. 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

#126 in #midi

28 downloads per month
Used in 18 crates (7 directly)

GPL-3.0 license

6MB
49K SLoC

Aloe-Android Crate

Overview

The aloe-android Rust crate is designed to interface seamlessly with Android's multimedia capabilities, specifically focusing on Bluetooth MIDI (Musical Instrument Digital Interface) connections. It facilitates communication and interaction with Android devices via MIDI through Bluetooth, positioning itself as a robust solution for audio and media applications.

Features

  • MIDI Device Management:

    • Enumerate and manage Bluetooth MIDI connections with Android devices.
    • Handle MIDI device connection statuses using the AndroidBluetoothMidiDeviceConnectionStatus and manage pairings with AndroidBluetoothMidiInterfacePairStatus.
  • Android Interface Implementation:

    • Implement various Android interface callbacks, including lifecycle, layout change, and media scanner connections.
    • Seamlessly integrate Android components through SurfaceHolder, ContentSharer, and FragmentOverlay interfaces.
  • Multimedia Support:

    • Supports file sharing through content provider systems.
    • Utilize media scanner connection interfaces to manage media presence.
  • Activity Lifecycle Management:

    • Detailed activity lifecycle control through ActivityLifecycleCallbacks, ensuring consistent state across Android application components.

Usage

Add aloe-android to your Cargo.toml:

[dependencies]
aloe-android = "0.1.0"

Example

use aloe_android::{AndroidBluetoothMidiInterface, SurfaceHolderCallbackInterface};

struct MySurfaceCallback;
impl SurfaceHolderCallbackInterface for MySurfaceCallback {
    fn surface_changed(&mut self, holder: LocalRef<jobject>, format: i32, width: i32, height: i32) {
        // Implement your code here
    }
    fn surface_created(&mut self, holder: LocalRef<jobject>) {
        // Implement your code here
    }
    fn surface_destroyed(&mut self, holder: LocalRef<jobject>) {
        // Implement your code here
    }
}

let midi_interface = AndroidBluetoothMidiInterface::new();
let my_surface_callback = MySurfaceCallback;

License

The aloe-android crate is licensed under the GPL-3.0 license.

Disclaimer

This README.md file was generated by an AI model and may not be 100% accurate, but it should be pretty good.

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

~25–39MB
~585K SLoC