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.
I found the solution. Its actually very simple:
adb install application1.apk & adb install application2.apk & adb install applicaiton3
That's what i was looking for. Thanks everyone