mobiler 0.20.0

Build mobile apps in Rust — one core, native UI on Android, iOS, and the web (CLI)
1
2
3
4
5
6
7
8
9
10
11
name = "sqlite"
summary = "On-device SQLite — exec / query → JSON rows (free)"

[android]
sources = ["android/SqlitePlugin.kt"]
register = '"sqlite" to SqlitePlugin(application)'

[ios]
# libsqlite3 via the system SQLite3 module (no extra link). Matches the Android exec/query contract.
sources = ["ios/SqlitePlugin.swift"]
register = 'case "sqlite": return await SqlitePlugin.handle(op: op, input: input)'