I'm making an app that uses an API service with a very short limit, so the only solution is to keep cache for every loaded URL.
I think it's a requirement to do it manually instead regular okhttp/android http cache because the server response for all my requests is X-Cache: MISS. I found this post about it with an answer i think It't the right way to do it:
Good way to cache data during Android application lifecycle?
But the answer is very old, so maybe I'm missing something important or there is a new way to do it.
Thanks in advance for your answers.