I'm using getCustomerInfo
on the splash screen to check the subscription status when the app is opened for the first time (where the cache is empty). However, I’ve noticed that getCustomerInfo
sometimes takes 10-20 seconds to fetch data, which is too long for a smooth user experience.
Since I’m not using a server-side solution, what are the best practices to speed up this process purely on the client side? Would pre-fetching, background loading, or specific configurations help reduce the delay?
Any insights or recommendations would be greatly appreciated!