-
Notifications
You must be signed in to change notification settings - Fork 111
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Is it possible to run Linux GUI applications using android-ndk-rs? #177
Comments
The There are issues around where users successfully use Note that Termux provides a Linux (Ubuntu/Debian based) environment with lots of common packages to perform tasks on UNIX and develop applications. In that sense it has very different goals than
In order to fully answer your question, I need one bit more information: what kind of "Rust programed Linux applications" are we talking about (console/REPL only?), and where do you intend to run them (directly on the device via eg. an |
@MarijnS95 Just a question what is the difference between
So if it is a terminal based application (something like
So say if I made another |
@Joe23232 Before answering your questions, take some time to familiarize yourself with the following information, readily available:
|
My guess is that alacrity could be built with cargo-apk and you could somehow get something to work. Doing unsupported things is interesting, but it means you're on your own. |
I see thanks guys. Also is there a GUI library that works on ANdroid, for example Iced or something? |
People have gotten iced to work on Android. Would be exciting to get support upstream, working out the quirks and adding an example to android-ndk-rs. |
@dvc94ch DId they have to do some hacky way to get it to work or it just worked? |
cool thanks |
There is an application called Termux that allows you to run Linux terminal based applications on it such as
htop
etc (probably I would have to recompile it to get it to work on ARM).So using the
android-ndk-rs
crate, does it offer something similar totermux
so that I can easily port any of my Rust programed Linux applications to Android?The text was updated successfully, but these errors were encountered: