diff options
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 ( |
