Ubuntu上使用USB安装APK到手机
Ubuntu上可以使用adb
命令安装APK到手机上。
安装adb
1 | apt-get install android-tools-adb |
查看已经连接的设备
1 | adb devices |
输出如下结果:
1 | fify@fify-Vostro-3902:~$ adb devices |
安装APK包到指定设备
1 | adb -s ZLPFCI6L4LEUJJUG install ~/Desktop/Irenshi_V3.3.1-27_release.apk |
其中-s
指定要安装到哪一台设备。
输出如下,当出现Success的时候表示安装成功,这时可以在手机上运行已经安装的程序:
1 | fify@fify-Vostro-3902:~$ adb -s ZLPFCI6L4LEUJJUG install ~/Desktop/Irenshi_V3.3.1-27_release.apk |
转载请注明出处:Ubuntu上使用USB安装APK到手机
原文地址:https://www.xiaotanzhu.com/%E5%AE%89%E5%8D%93/2016-09-20-install-apk-on-ubuntu.html