使用脚本 shell 从 PHP 启动 ADB 命令

发布于 2024-12-20 08:18:06 字数 397 浏览 0 评论 0原文

我正在编写一个网络应用程序,允许用户在其 Android 智能手机(插入 USB)上安装 Android 应用程序。

有我的 PHP 脚本(在带有 MAMP 服务器的本地主机中运行):

echo exec('./myscript.sh '.$apkName);

还有我的 shell 脚本:

#!/bin/bash 
echo test
adb install ./$1

但我认为,执行 adb 命令存在正确的问题,我不明白,因为我在 chmod 777 中设置了 adb ...

命令行“echo test”工作完美,但 adb 命令不行。

你能告诉我这个问题吗?

提前致谢 !

I'm coding a web app which allows users to install android application on their android smartphone (plug with USB).

There is my PHP script (running in localhost with MAMP server) :

echo exec('./myscript.sh '.$apkName);

And there is my shell script :

#!/bin/bash 
echo test
adb install ./$1

But I think, there is a right problem to execute adb command, that I don't understand, because I set the adb in chmod 777...

The command line 'echo test' workd perfectly but not the adb command.

Could you enlight me for this problem ?

Thanks in advance !

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

青衫负雪 2024-12-27 08:18:06

尝试adb -d install <我的APK路径>/<我的APK名称>.apk

try adb -d install <My APK Path>/<My APK Name>.apk

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