How can I implement auto-updating of my application when a new version is released without using Google Play Store? I\'m using JSON to check the version.
It's not possible without using the google play store if you want an automatic update
.
A plugin exists if you want to do it using the play store. in_app_update
Which wraps the android in-app update functionality
Their official example on github
If you also want an iOS solution, then it's not possible. You could redirect the user to the AppStore. Some more info on the distribution methods available for apple apps.
There is this method which might work if you have an enterprise license.
Whereas if you have a server running, have an endpoint to query the latest versions and another endpoint that allows users to download the apk.
Use something like github releases if you don't have a server.