I would like to store a list of all paid and unpaid apps in a log file (which I would then upload to Google Drive or FTP to some other server). This way if my phone is lost, stolen, or breaks, I will still have a list of the complete set of apps I had been using, so I will not forget any app I installed. I know Google Play keeps a list of purchased apps in its database, but it does not store the unpurchased ones.
So, is there a script somewhere which will allow me to generate this list (I didn't see anything supporting this functionality in the stock UI, using Android KitKat 4.4.2).
library.db
at/data/data/com.android.vending/databases/
may be what you're looking for. It has some purchase related info about all the apps linked to your Google account. You may pull the file easily if you've root access. Otherwise, backup Play Store app using [tag:adb] and extract the backup using ABE. – Firelord Sep 06 '15 at 20:49library.db
file you mention. Thanks. – John Sonderson Sep 06 '15 at 20:50adb shell
command to access my Android device from my PC. – John Sonderson Sep 06 '15 at 21:31