我可以在手机上获取已安装应用程序的 APK 文件吗
我正在尝试开发一个用于备份文件的应用程序。我需要像 Astro 管理器一样提取已安装应用程序的 APK 文件。
如果有人知道如何提取请给我解决方案。
I am trying to develop a application for backing up the files. I need to extract the APK files of installed applications like the Astro manager does.
If anyone know how to extract please give me the solution.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
它们存储在
/data/app/
中,但除非您的手机已 root,否则您不会在那里看到任何内容。系统 apk 存储在
/system/app
获取确切 apk 路径的更好方法:
They are stored in
/data/app/
but unless your phone is rooted you won't see anything there.System apk's are stored at
/system/app
A better way of getting the exact apk path :
您需要先root您的手机。然后安装Android SDK。
运行adb或ddms->文件资源管理器,在/system/app中查找您感兴趣的APK
You need to root your phone first. Then install Android SDK.
run adb or ddms->file explorer, look for your interested-in APK in /system/app
最简单的方法是使用 ASTRO 文件管理器< /a>,
打开Astro文件管理器>工具>应用管理器>备份 在此处查看 hep 文档。
它将备份您所选应用程序的 .apk 备份!
如果有任何问题请发表评论。
The most simplest method would be take backup of application using ASTRO file manager,
Open Astro File Manager> Tool > Application Manager > Backup see hep docs here.
it will backup your selected apps's .apk backup !
drop comment if any problems.