Hi guys, I am new to Xamarin Forms. My question is, say I have an incoming text file form a remote source containing some information that needs to be passed to users of my app as soon as possible, what is the way to do this?
I was thinking to input the data in this text file in an azure cloud service table and then based on the information send push notifications to the respective users. Can an app monitor for new data being added to a table and be notified right away and retrieve that information ? What is the best way ? Any recommendations are welcome.
I was thinking to input the data in this text file in an azure cloud service table and then based on the information send push notifications to the respective users.
You're definately on the right track here. Best for you would be to start from this doc:https://docs.microsoft.com/en-us/azure/app-service-mobile/app-service-mobile-xamarin-forms-get-started-push
Answers
You're definately on the right track here. Best for you would be to start from this doc:https://docs.microsoft.com/en-us/azure/app-service-mobile/app-service-mobile-xamarin-forms-get-started-push
@Szbesta Thank you for your answer will study that link.