有没有办法通过将应用程序复制到 /data/app 来安装应用程序

发布于 2024-11-03 19:08:25 字数 196 浏览 0 评论 0原文

要使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

霓裳挽歌倾城醉 2024-11-10 19:08:25

实际上,安装应用程序的方法是:

adb install app.apk

如果您想以编程方式进行安装,则必须使用 Intent,如下所示:

Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(Uri.fromFile(new File(Environment.getExternalStorageDirectory() + "/app.apk")),"application/vnd.android.package-archive");
startActivity(intent); 

在上面的情况下,apk 位于 SDCard 目录中。

Actually, the way to install apps is:

adb install app.apk

If you want to do it programmatically, you will have to use an Intent like this:

Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(Uri.fromFile(new File(Environment.getExternalStorageDirectory() + "/app.apk")),"application/vnd.android.package-archive");
startActivity(intent); 

In the case above, the apk is in the SDCard directory.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文