Quote:
Originally Posted by peaceridge
What do you use for backingup the installer? I have apk extractor, but it doesn't seem to work.
|
You can do it from your computer with adb.
Find the path where it is installed:
Code:
adb shell pm path com.multipie.calibreandroid
It will return the path to the application. In my case it returns
Code:
package:/data/app/com.multipie.calibreandroid-PeVtQTY_61elKAB3mFSNnw==/base.apk
Then I need to copy that path (everything after "package:") and retrieve the apk from the phone with
Code:
adb pull /data/app/com.multipie.calibreandroid-PeVtQTY_61elKAB3mFSNnw==/base.apk
Finally rename the file from base.apk to something more descriptive like CalibreCompanion.apk.