Search code examples
javaandroidgoogle-playauto-update

Is there any way to Update My Android app file without the User updating the App?


I am making an Android App which needs it's Assets file to be updated every 2-3 days.

Is there any way through which I could update the files without having users to update the app twice a week?

Files sizes are very small not even an Mb


Solution

  • Place the updated files on a server on the internet.

    At every startup your app checks if there are updated files.

    If so, the updated files are downloaded

    The rest i leave to you..