如何将多个 android 应用程序(从 apk 文件)安装到设备中?

问题描述:

我有 50 个 apk 文件,我需要将它安装到许多 android 设备上.如何一键安装.我可以通过安装"命令使用 adb 安装一个 apk 文件,但是如何一次安装 50 个 apk 文件?

I have 50 apk files and I need to install it to many android devices. How can I install it with one click. I can install an apk file using adb via "install" command but how to install 50 apk files at once?

我使用的是 Windows

I'm using Windows

谢谢.

我找到了解决方案.其实很简单:

I found the solution. Its actually very simple:

adb install application1.apk &adb install application2.apk &adb install 应用程序3

adb install application1.apk & adb install application2.apk & adb install applicaiton3

这就是我要找的.谢谢大家

That's what i was looking for. Thanks everyone