Nikl.me

Notes on Android development using Bevy

08 July, 2023

While working on an Android logic puzzle app with Bevy, I learned some things about the current state of Android support in the engine and its dependencies. The following are a few notes that hopefully are not only useful to myself, but also to others who would like to use Bevy to write an Android app.

The starting point is Bevy's mobile example. Take a look at the example Readme for instructions on how to run it. For now, I will ignore all things iOS since I don't have a setup for iOS development. When my app was only a copy of the Bevy example, I could connect my phone, run cargo apk run -p <app_lib_name> and the example would open up after around one and a half minutes. Let's work on that.

Shorter feedback cycles

Installing the app on my phone should be significantly faster than one minute to not constantly wait after code changes. cargo apk run mostly does three things:

  1. Compile your code as cdylib
  2. Bundle and sign the APK
  3. Install the APK on the connected device

Looking at the first step already, we can half the compile time of the Bevy example. It configures two android targets aarch64-linux-android and armv7-linux-androideabi. Every code change you make will be compiled for both targets, but my phone ran fine with only either of them configured. For now, I only build for aarch64-linux-android. When it comes to releasing the app, I might revisit this and add more targets.

The second step is pretty fast already. One point about the signing though: if you would like a release build, cargo-apk will complain, that you need a key. If you only want something quick for testing, you can point to the same key that is already used for debug builds:

[package.metadata.android.signing.release]
path = "~/.android/debug.keystore"
keystore_password = "android"

Configuration for signing a release APK with the debug key. This is the path to the debug keystore on my linux laptop, but it should be similar for other OS.

For incremental installs, the third step took by far the longest. More than a minute was spent on copying the APK to my phone. This was easily explained when looking at the size of the bundled APK: 1.5Gb. Half of the APK was gone once I removed a target, but ~750Mb is still too much.

Looking at the documentation of cargo-apk, I found an option to strip the shared libraries from debug symbols. This is done by default for release builds, but you can enable it for all builds by configuring strip = "strip" under [package.metadata.android] (this is now also done for the Bevy example).

While developing android specific things, I can now run cargo watch -x 'apk run -p <app_lib_name>' and the app opens up in acceptable time (compile + ~6s).

Desktop build

Even with all the size improvements for our debug APK, running the application on the phone takes longer than on desktop. For code changes that are not platform specific, it's helpful to have a desktop target set up. Especially, because I can't get the app to run in an emulator.

Since cargo-apk requires a cdylib, I split the project into two crates. One crate contains a library exporting everything as a plugin and a main.rs file to target desktop. The other crate only contains a lib.rs file, uses the #[bevy_main] macro, and configures the android application in its Cargo.toml.

Now cargo watch -x run restarts the app on my desktop after every code change.

Where to render

Different mobile devices have different screen geometries and cut-outs for e.g. cameras. A mobile application should not render content behind the info bar or software buttons. This is one of the challenges I have not completely solved yet.

My current attempt is the following system that runs in an early state and every time the orientation changes:


pub fn calculate_layout(
    mut commands: Commands,
    windows: NonSend<WinitWindows>,
    primary_window: Query<Entity, With<PrimaryWindow>>,
) {
    info!("Calculating layout");
    let primary_entity = primary_window.single();
    let primary = windows.get_window(primary_entity).unwrap();
    let inner = primary.inner_size();
    let scale = primary.scale_factor();

    let content_rect = if cfg!(target_os = "android") {
        use winit::platform::android::WindowExtAndroid;
        let content_rect = primary.content_rect();
        let content = ContentRect {
            bottom: (inner.height as f32 - content_rect.bottom as f32) / scale as f32,
            left: content_rect.left as f32 / scale as f32,
            right: (inner.width as f32 - content_rect.right as f32) / scale as f32,
            top: content_rect.top as f32 / scale as f32,
        };
        info!("Adjusting content to {content:?} due to inner {inner:?}, content {content_rect:?} and scale {scale}");

        content
    } else {
        ContentRect {
            bottom: 0.,
            left: 0.,
            right: 0.,
            top: 0.,
        }
    };
    commands.insert_resource(Layout { content_rect });
}

#[derive(Resource)]
pub struct Layout {
    pub(crate) content_rect: ContentRect,
}

#[derive(Debug)]
pub struct ContentRect {
    pub top: f32,
    pub bottom: f32,
    pub right: f32,
    pub left: f32,
}

This system calculates the distance in pixels that content should keep from the borders of the screen to not overlap with cut-outs or things like software buttons. The pixel values are stored in a resource and default to 0 on other platforms than Android.

The idea is to use the Layout resource in all systems that spawn sprites or UI and use the top, bottom, left and right values to keep appropriate distance from software buttons and cut-outs. On my S10+, this works perfectly for the software buttons on the bottom, but not for the info bar on top of my screen. The content rect reports too big numbers for the top and I opened rust-windowing/winit#2931 for that (but I am not sure if this is really a winit issue or further upstream).

Performance

A simple app should not constantly drain battery while running 60 FPS for nothing. The first thing we can do is to tell winit to only run frames when something happened (like user input). In Bevy, we can do this by adding the resource WinitSettings::desktop_app() to our app. This configures winit to run only one frame every 5 seconds while the application is open, but not receiving any user input.

These winit settings can break animations, since the screen effectively freezes without user input. If you know that you want to run the next frame independent of the user doing something or not, you can send a RequestRedraw event.

Backward navigation

My app will only contain logic puzzles and as such doesn't need input apart from touch events; I thought. Then I attempted to use the software back button on my phone and didn't get any keyboard input. This seems to be an open issue in winit (rust-windowing/winit#2304). After a little investigation, I hacked something in my bevy fork and moved on (for now).

On desktop, I am used to navigating backwards with my mouse. This is not supported in the latest winit release, but was merged recently and should make its way to Bevy soon. For now, I hardcoded MouseButton::Other(8) to be back navigation.

Moving the app to the background

Anyone playing around with Bevy on Android will notice, that the App lifecycle events are not yet completely handled. When you minimize and open the app back up, it will not resume where you left of, but start from the beginning (Update - Fixed in Bevy 0.12). This issue is known and solutions were discussed a bit in bevyengine/bevy#86, but since I couldn't find an open issue for the specific problem, I opened bevyengine/bevy#9057 to track it. For now, my workaround in the app is to save the current state in a database, so the app can always go back to where the user left.

There is a follow-up post concentrating on how to get a Bevy application into the app stores


Thank you for reading! If you have any feedback, questions, or comments, you can find me at @nikl_me@mastodon.online or on the Bevy Discord server (@nikl).

Nikl.me © 2022