Adapters generated via codegen cannot be added in the Moshi.Builder().add(Type, JsonAdapter). So moshi doesn't know how to create the compile-time generated adapter. It uses reflection to create them, which adds a significant overhead on low-end devices in terms of latency.
is there a way to avoid this? Or should we just replace this with custom type adapters?