Abhinav
Abhinav

Reputation: 8168

Update UI in android App without making users to update the App

I am building an app using , so the first time I upload the app to playstore, it will go with pre-defined Menu options and other stuffs.

Now, suppose I want to add a menu option in the Header of the App for any festive seasons or some awesome offers, and on clicking the menu, I should display the latest offers.

Is there any way to implement this feature without having to go through the process of again uploading to appstore and making users to update the app??

Upvotes: 1

Views: 117

Answers (2)

Falloutcoder
Falloutcoder

Reputation: 1011

There is a concept of Over The Air (OTA) updates which you are referring to here. This is provided by Expo (by default create-react-native uses expo), firebase and Microsoft code push. You can read about it more here on official expo docs. If you are not using Expo then i prefer Code Push

Upvotes: 1

Poptocrack
Poptocrack

Reputation: 2989

Build an api endpoint you call at the app startup seems to be the easiest way to do this. Take a look at firebase if you don't want to build a full api and server yourself. Cloud functions are easy to use and could do the job in your case.

Upvotes: 0

Related Questions