I am facing a jira ticket that introduces a banner (or a popup, doesn't matter) that displays a warning message if the installed version is outdated.
We keep the app's version in the config file locally. I thought that comparing it to the one in the store would do the job.
I have done a research and found possible solutions:
For iOS, there is a handy api https://itunes.apple.com/lookup?bundleId=${bundleId}. It does the job and pretty reliable
For Android, the only option I know so far is to scrap the app's web page in the Play Market and extract the current version. This one is not very reliable.
So, I was wondering, what other options do I have?
Thanks in advance!