0.1.0-2-beta.1.fix.3

This commit is contained in:
2026-09-17 16:57:36 +02:00
parent a278eb7109
commit 977b193e00
21 changed files with 289 additions and 39 deletions

View File

@@ -1,5 +1,5 @@
<!-- file: docs/testing/002-BETA_VALIDATION_MATRIX.md -->
<!-- version: 1 -->
<!-- version: 2 -->
# Matrice de validation beta 0.1.0
@@ -128,3 +128,21 @@ cargo test --workspace --all-targets --all-features
```
Cette suite complète ne devient pas une gate de chaque futur correctif beta.
## Logcat Android
Le buffer doit être vidé avant le lancement du jeu, pas après :
```bash
adb -s <device> logcat -c
adb -s <device> shell am start -n <package>/<activity>
adb -s <device> logcat | grep -iE 'games\.sasedev|com\.sasedev\.games|SDL|AndroidRuntime|FATAL|panic'
```
Android utilise un subscriber `tracing` dédié à logcat.
## Back Android 16
Les applications ciblent API 36. Le Back système est donc traité via `OnBackInvokedCallback` sur API 33+ puis converti en `QuitSource::PlatformBack`.
Le fallback `onBackPressed()` reste réservé aux versions Android antérieures.