Skip to content

easy Rust access to Android state (native Java objects) managed by UI toolkits

License

Notifications You must be signed in to change notification settings

project-robius/robius-android-env

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

robius-android-env

Latest Version Docs Project Robius Matrix Chat

This crate provides easy Rust access to Android state (native Java objects) managed by UI toolkits.

Usage of this crate

This crate exists for two kinds of downstream users:

  1. The UI toolkit that exposes its key internal states that hold the current Android activity being displayed and the Java VM / JNI environment. Either the UI toolkit or the app itself should set these states on startup, either by using ndk-context or by manually calling the set_vm() and set_activity_getter() functions.
  2. The platform feature "middleware" crates that need to access the current activity and JNI environment from Rust code in order to interact with the Android platform.

Supported UI toolkits

  • Makepad: enable the makepad Cargo feature.
  • UI toolkits compatible with ndk-context: enable the ndk_context Cargo feature.
  • Others coming soon! (in the meantime, see below)

Usage of this crate for other UI toolkits

⚠️ Note: for wider compatibility, you should prefer the ndk-context feature instead of what is described below.

For any other UI toolkits not listed above, you don't need to enable any cargo features. Instead, your application code must manually provide two key states:

  • a reference to the current Android activity.
  • a reference to the current Java VM instance (and JNI environment).

This can be achieved by doing the following:

About

easy Rust access to Android state (native Java objects) managed by UI toolkits

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages