使用脚本 shell 从 PHP 启动 ADB 命令
我正在编写一个网络应用程序,允许用户在其 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试
adb -d install <我的APK路径>/<我的APK名称>.apk
try
adb -d install <My APK Path>/<My APK Name>.apk