我尝试在 android avd 上安装应用程序但无法安装,您能帮我安装任何 android 商店吗?
./adb install '/home/drmohammed/workspace/android/android-sdk-linux/platform-tools/mobogenie_1028.apk'
bash: ./adb: No such file or directory
答案1
Bash(终端)基本上说它无法adb
在您的工作目录中找到文件。./
意思是“我所在的目录”。通过输入,您可以尝试执行当前工作目录中的./adb
文件。adb
我认为你可能想做的是这样的:
adb install '/home/drmohammed/workspace/android/android-sdk-linux/platform-tools/mobogenie_1028.apk'
这将执行已安装的程序adb
。