- A base to create android applications with ease
android_base
provides an api to develop applications in rust for android without worrying about android specific details like opengl implementations or the event loop, all while having its exposed functions be very abstract in terms of what you can do
This is basically the same example as shown in the piston getting started page, except with inverted colours.
Note that this example requires some basic knowledge of rust and working with android
Getting started:
Make sure you've followed the getting set up
section of this readme beforehand to setup the environment/dependencies
To set up the cargo project follow the standard procedure you'd go through with for any other binary rust application:
1. Run cargo new android_example --bin
in the directory you want to create the project in
2. Inside the newly created android_example
folder, edit the Cargo.toml
file and add android_base = "0.1.0"
as a dependency
Take note that this is the only dependency you are required to add; android_base automatically imports the right versions of all the crates you'll need in the form of a prelude
Writing the code
//automatically imports right versions of crates use androidbase::*; use graphics::*; use androidglue::*;
pub struct App { rotation: f64 }
impl App { pub fn new() -> Self { Self {rotation: 0.} } }
impl AppImpl for App { fn draw(&mut self, c: Context, gl: &mut GlGraphics, args: &RenderArgs){ clear([1., 0., 0., 1.], gl); let transform = c.transform .trans(args.width as f64 / 2., args.height as f64 / 2.) .rotrad(self.rotation) .trans(-75., -75.); rectangle([0., 1., 0., 1.], [0., 0., 150., 150.], transform, gl); } fn update(&mut self, args: &UpdateArgs) { self.rotation += args.dt; } fn cancelpoll(&self) -> bool { false } }
fn main() {
enablebacktrace();
let mut container = AppContainer::init(App::new(), AppConfig::new());
container.run();
}
``
4. Now let's tear this down piece by piece:
1. Because prelude importing extern crates' members is unstable, we add a flag to enable this, hence the
#![feature(uniformpaths)]at the start
2. Then we import
androidbaseand two important dependencies in making an android app with piston; [
graphics](https://github.com/PistonDevelopers/graphics) and [
androidglue](https://github.com/tomaka/android-rs-glue/tree/master/glue). For now I'll just assume you know what
graphicsdoes, but
androidglueserves as the, well, glue between your app and android's events
3. To basically copy what the piston example does, we create a similar struct containing our app, holding a rotation; but notice that we don't have to hold any kind of opengl stuff or even have to import it, there'll be more on this later when I'm talking about the
drawmethod.
4. We have added a
newfunction for simplicity, but we could just use the constructor instead, either way works
5. We then implement a pretty self-explanatory trait for the app,
AppImpl, which holds all the important functions that can be implemented for your app:
1.
draw: This holds all the drawing functionality for your app, and takes the parameters supplied from
GlGraphics' draw method, so that
androidbasetakes care of getting ready to draw, and you just draw
2.
update: This holds information when your app is needed to draw; this is basically just a passthrough from
piston::eventloop::Events::next()when it emits an update flag.
3.
cancelpoll: This polls your app if it should stop running, when it returns true, it will stop executing, even if it is only meant to render a numbered amount of frames (Look at the part on configuration below)
4. There are many more functions you can take a look at that you can override in
src/appimplementor.rs
6. In our main function we do the following:
1. Set the environment variable
RUSTBACKTRACEto 1 to allow debugging backtraces; this just makes debugging easier
2. We initialize an
AppContainerwith our app, and a default configuration. Configuring the
AppContainerwith an
AppConfigcan make it run only a certain number of frames, or call a reset function on
run()
3. Which leads us to the
runfunction which will run our app until
cancel_poll` returns true (Which it won't because it's set to false)
cargo-apk
Cargo.toml
:
```
[package.metadata.android]build_targets = [ "arm-linux-androideabi" ] ```
Note that this example will follow the steps for compiling to a real device running arm linux android and will not detail how to start an emulator or even how to install one
bash
$ rustup target add arm-linux-androideabi
adb tcpip 5555
adb connect <your ip address>
to connect over wifi to make things easier for repeated runscargo-apk run
, and if it doesn't work:
adb logcat
and re-open your appenable_backtrace
in main
will print out a backtrace when panic!()
occurs
cargo install --git https://github.com/tomaka/android-rs-glue.git --rev 1d095846a687f873b6aed7d62ee32bc5a062e534 --force cargo-apk
Setting up your environment
but without re-installing cargo-apk because the published version is out of date
Note: This readme/setup/example is meant for users either on ubuntu or on on WSL (Which I personally use), I've found that windows directly doesn't work
Another note: due to a minor implementation detail in the latest version of
cargo-apk
is broken and you can't callcargo apk
and instead have to callcargo-apk
.
Another note: This crate includes a git clone of
opengles_graphics
which is a fork ofopengl_graphics
meant to work with opengles, but it hasn't been updated for over 2 years. I therefore updated its dependencies to accomodate for newer versions of other crates. I do not claim to have developed the entirety of it, and have only made minor changes, and instead give credit to Drakulix and the Piston team