Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 Eclipse 开发一堆 Android 应用程序,我需要在模拟器或附加设备上批量安装它们。我希望能够将它们全部推送到设备上,而无需在 Eclipse 中单独运行它们。
我怎样才能做到这一点?
尝试使用亚行。
adb install -r your/path/to/file.apk
-r 是强制安装。
您还可以创建包含许多adb install命令的批处理文件。
adb install
您可以使用命令行中的“adb install fileN.apk”将它们推送到模拟器。