theapache64 / retrosheet

📃 Turn Google Spreadsheet to JSON endpoint (for Android and JVM) for FREE (100%)
Apache License 2.0
845 stars 39 forks source link

Enable to add adapter to Moshi #32

Open mateuy-dev opened 5 months ago

mateuy-dev commented 5 months ago

The library uses an global Moshi instance that can't me modified.

object MoshiUtils { val moshi: Moshi by lazy { Moshi.Builder() .build() } }

A fast dirty solution would be just changeing it to var so that we could modify it and add adapters.