Closed SandroMachado closed 8 years ago
I really like this idea. I have been (passively) working on a getting a github page up for the project, too. We can use this to allow people to sideload it.
+1
https://f-droid.org/repository/browse/?fdfilter=apktrack&fdid=fr.kwiatkowski.ApkTrack uses several sources (but not GitHub) to find latest versions.
It's also worth looking into adding VTS to F-Droid
Since the application is only on github and all the development is based on github. Check only for the update on github should be enough. A better improvement to #106 is also introduce that check on a service that runs periodically on the device instead of just wait for the user action to check for updates.
The original url doesn't work anymore: it's https://api.github.com/repositories/40509121/releases/latest now.
@z3ntu, thanks, I will make a PR to update the URL.
Since the application was removed from the Google Play Store, a new method to warn the users that a new version of the application is available should be created.
Using the Github API it is possible to get the releases information and we can use that to query for the latest build and check if the app is already on that build. If not, prompt the user to update to the most updated release.
curl -i https://api.github.com/repos/nowsecure/android-vts/releases/latest
@Fuzion24 please let me know what do you think of this.