1
0
mirror of https://github.com/emilk/egui.git synced 2026-06-26 22:53:14 -04:00

Disallow accesskit on Android NativeActivity, making hello_android working again (#6855)

Follow up for https://github.com/emilk/egui/pull/6766

I wasn't sure if `compile_error` is appropriate. It felt right.
This commit is contained in:
Piotr Podusowski
2025-05-18 13:17:28 +02:00
committed by GitHub
parent cb4acbc262
commit 12cd35f48c
3 changed files with 17 additions and 2 deletions

View File

@@ -176,7 +176,9 @@ jobs:
- name: Set up cargo cache
uses: Swatinem/rust-cache@v2
- run: cargo check --features wgpu,android-native-activity --target aarch64-linux-android
# Default features disabled to turn off accesskit, which does not work
# with NativeActivity.
- run: cargo check --features wgpu,android-native-activity --target aarch64-linux-android --no-default-features
working-directory: crates/eframe
# ---------------------------------------------------------------------------