Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to install multiple android applications ( from apk files) into device?

Tags:

android

apk

adb

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?

I'm using Windows

Thanks.

like image 981
Danylo Volokh Avatar asked Nov 28 '13 16:11

Danylo Volokh


1 Answers

In Windows, you can using this command line:

for %f in (C:\your_app_path\*.apk) do adb install "%f"
like image 110
alextooter Avatar answered Sep 20 '22 23:09

alextooter