7c07f71f02
android_keystore.rs uses bevy::android::ANDROID_APP to obtain the process-wide JavaVM handle, but bevy was absent from the Android-target dep block in solitaire_data/Cargo.toml. Cargo resolved the symbol in the workspace dev build (where bevy is reachable transitively) but the Android cross-compile with cargo-apk failed with E0433. Adding bevy under [target.'cfg(target_os = "android")'.dependencies] fixes it. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>