Is it possible to update other installed apps from my own app.
Actually what I want to do is, I want to develop an app that checks for the installed apps on the deice, then checks if there are any updates available for those apps and id there are any, it will update them.
to check whether there is an update available for a particular app, I found out a third party API click herehttps://groups.google.com/forum/?fromgroups=#!topic/android-market-api/-F2QfvGt1nU
So, now is it possibel to update the apps programatically from my app??
If you really want to work with unsupported API that will for sure break anytime soon, I suggest to do the following:
Check the user installed apps and their versions:
Then compare it with latest version of the API:
EDIT:
Send the package name to the API: dev.appaware.com/1/doc/examples/example3.php and analyse this line “version”: “2.4.0.263535”, if this number is different from the version on phone, take the user to Google Play page.
This will be a total duplicate of already existing features…