diff options
| author | Lukasz Kasprzak <lukas@labunix.xyz> | 2026-08-04 00:11:23 +0200 |
|---|---|---|
| committer | Lukasz Kasprzak <lukas@labunix.xyz> | 2026-08-04 00:11:23 +0200 |
| commit | 197ce6980daa1c3773eed1548f54861d616d35e4 (patch) | |
| tree | 58394c367c68ae8c5d3d7d7b1f5d42044b3b3ef0 /mobile/mobile.go | |
| parent | 70c504148ca9ddf7fdb31162f5f8da7e118fca45 (diff) | |
| download | lectio-197ce6980daa1c3773eed1548f54861d616d35e4.tar.gz lectio-197ce6980daa1c3773eed1548f54861d616d35e4.zip | |
mobile: strengthen the PartLabels fallback test and count bounds
Diffstat (limited to 'mobile/mobile.go')
| -rw-r--r-- | mobile/mobile.go | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/mobile/mobile.go b/mobile/mobile.go index d863463..d91831c 100644 --- a/mobile/mobile.go +++ b/mobile/mobile.go @@ -8,7 +8,9 @@ // document with the day's identity and rendered Mass readings. All liturgical // computation and text resolution happens here, in the exact validated lectio // engine — the app does none of it. Keep every exported signature to types -// gomobile can marshal (string in, string out): that is why the payload is JSON. +// gomobile can marshal -- strings and ints only -- with JSON as the payload +// format for everything structured. A Go int parameter (e.g. Days' count) +// surfaces on the Kotlin side as a long, not an Int. package mobile import ( |
