Reputation: 131
I have developed web api and deployed in windows azure. That web api is consumed in android application. That app is slow when fetching data from WEB API.
How to speed up app to fetch data from WEB API?
Thanks.
Upvotes: 2
Views: 334
Reputation: 44278
You first need to figure out why it's slow ?
Is the api method execution slow? Is it calling a database query and the DB is slow? Is it a bandwidth problem between the Android device and their network?
Could be a million and one things without you providing more information but here are a few things you could try.
Upvotes: 1