mobiler 0.11.0

Build mobile apps in Rust — one core, native UI on Android, iOS, and the web (CLI)
# securestore — encrypted key/value storage (free, bundled)

```bash
mobiler plugin add securestore
```

For **secrets** (auth tokens, API keys) — not bulk data (use `cx.save` for general state).

```rust
cx.plugin("securestore", "set",    r#"{"key":"token","value":"abc"}"#, Msg::Stored),
cx.plugin("securestore", "get",    r#"{"key":"token"}"#,               Msg::GotToken),
cx.plugin("securestore", "delete", r#"{"key":"token"}"#,               Msg::Cleared),
```

- `input` is JSON. `set``ok:true`; `get``ok:true, output = value` (`""` if absent);
  `delete``ok:true`.
- **Android:** `EncryptedSharedPreferences` (AES-256, keys in the Android Keystore). Adds the
  `androidx.security:security-crypto` Gradle dep.
- **iOS:** the **Keychain** (`Security` framework — no package), items `…ThisDeviceOnly`.
- **Web:** graceful `ok:false` (browsers have no equivalent secure store; don't put real secrets in
  a web build).

**Pair with `biometric`** — gate a `get` behind an `authenticate` in your Rust core (see the
biometric plugin's `app-core-usage.rs`). Keychain/Keystore work on the simulator/emulator, so this
one is testable without a device (unlike biometric).