用我的手机用电脑提取apk文件

问题描述 投票:1回答:2

我在破损的手机上有一个自定义应用程序,我需要将其转移到我的新手机我无法在我的旧手机上安装任何应用程序有没有办法我可以将手机连接到我的电脑并提取apk文件?

apk
2个回答
1
投票

即使是无根设备,您也可以使用adb:

adb shell pm list packages
adb shell pm path com.example.someapp

输出将如下所示:package:/data/app/com.example.someapp-2.apk

adb pull /data/app/com.example.someapp-2.apk path/to/desired/destination

0
投票

如果你能够与adb连接,你应该能够。

这是一个非常深入的指南,涵盖了所有 - https://androidquest.wordpress.com/2014/09/18/backup-applications-on-android-phone-with-adb/

© www.soinside.com 2019 - 2024. All rights reserved.