How to install multiple android applications ( from apk files) into device?
adb, android, apk
Solution
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
Problem
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.