有没有办法通过将应用程序复制到 /data/app 来安装应用程序
要使用 adb 安装应用程序,我使用
adb push app.apk /data/app
然后安装应用程序。
但是,当我只是使用 RootExplorer 将文件复制到 /data/app 时,它会复制,但不会安装。它就躺在那里。
例如,有没有办法使用终端模拟器安装应用程序?
To install app with adb I use
adb push app.apk /data/app
And then app installs.
But when I just copy file with RootExplorer to /data/app, it copies, but don't install. It just lies there.
Is there a way to install apps with Terminal Emulator for example?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
实际上,安装应用程序的方法是:
如果您想以编程方式进行安装,则必须使用
Intent
,如下所示:在上面的情况下,apk 位于 SDCard 目录中。
Actually, the way to install apps is:
If you want to do it programmatically, you will have to use an
Intent
like this:In the case above, the apk is in the SDCard directory.