Reputation: 4060
I'm using Eclipse to develop a bunch of Android apps and I need to batch install them, either on the emulator or on an attached device. I'd like to be able to push them all to the device without running them individually in Eclipse.
How can I do that?
Upvotes: 3
Views: 1047
Reputation: 7983
try using adb.
adb install -r your/path/to/file.apk
-r is forced install.
You can also create a batch file with number of adb install
commands.
Upvotes: 3
Reputation: 81
You could just push them to the emulator using "adb install fileN.apk" from the command line.
Upvotes: 0