How to do silent update in Android App
it's possible to update the app in silently. i.e (no user interaction)
what is the best way to achieve that? thank you in advance
How to do silent update in Android App
it's possible to update the app in silently. i.e (no user interaction)
what is the best way to achieve that? thank you in advance
If you have published your app in playstore and you want to update your app , then there is no way except the user has turned on AutoUpdate and update will run in background.
But if you have not published your android app in playstore and you want to update your app , then you should run Service in background and should link some flags from your database to notify the app about update. and after that your app should have background Service for updating the app but that will also need permission for update. So practically I think it is Impossible without permission.