I erroneously updated an application in the Google Play store. The update appears to have deprecated some features and I'd like to revert back (e.g. sideload the APK) of the previous working version. Unfortunately I have no idea what version it was and it would be an exhausting task to determine it through trial and error. Is there any log or history of previously installed application versions? I'm on a custom ASOP 4.4.2 ROM with root access, Xposed framework, adb, and all the normal tools of the trade. Is there any way to definitively resolve this?
Asked
Active
Viewed 749 times
0
dumpsys package PKG_NAME
displays the last update time and currently installed version. It doesn't list the previously installed versions. I'll tear into the sqlite DB's referenced in the aforementioned answer as well, but it doesn't look promising. – Six Feb 10 '16 at 13:18firstInstallTime
in your device and last update time of the app in Play Store, find the versions available on third-party websites and try them. It would be a pain if the app was frequently updated.From this time on, make a log of the current version and the updated version of an app to avoid getting into this situation again.
– Firelord Feb 10 '16 at 17:45