View Single Post
Old 06-21-2013, 06:27 PM   #10
ab78727
Connoisseur
ab78727 ought to be getting tired of karma fortunes by now.ab78727 ought to be getting tired of karma fortunes by now.ab78727 ought to be getting tired of karma fortunes by now.ab78727 ought to be getting tired of karma fortunes by now.ab78727 ought to be getting tired of karma fortunes by now.ab78727 ought to be getting tired of karma fortunes by now.ab78727 ought to be getting tired of karma fortunes by now.ab78727 ought to be getting tired of karma fortunes by now.ab78727 ought to be getting tired of karma fortunes by now.ab78727 ought to be getting tired of karma fortunes by now.ab78727 ought to be getting tired of karma fortunes by now.
 
Posts: 80
Karma: 597268
Join Date: Jan 2011
Location: USA
Device: reMarkable-Paper-Pro Pixel-Tablet Pocketbook-PB743
Unfortunately, ADB is only able to push the apk from your PC (running ADB) to the tablet. So you will need to copy the apk from the tablet to some directory on your PC and then do: "adb push [Path+filename of apk]". Also, since this is an Amazon Appstore app, you will need to push the apk for it as well using the same mechanism as some apps require that running before they will run. I hope this helps you.

BTW, this would mean the following steps:
- Install ADB on your PC and ensure that your HD is in development mode. Connect the HD to the PC and type "adb devices" - it should respond with a unique serial number if it sees your device correctly.
- Find a copy of the apk that you are trying to install and copy it to your PC in some location, say "c:\temp". Also do the same for the Amazon Appstore apk.
- Type "adb push c:\temp\<app>.apk". This should install it on the HD.

Last edited by ab78727; 06-21-2013 at 06:30 PM.
ab78727 is offline   Reply With Quote