Dave
Dave

Reputation: 4060

Install Android app in Eclipse without running it

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

Answers (2)

Rotemmiz
Rotemmiz

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

gibbotronic
gibbotronic

Reputation: 81

You could just push them to the emulator using "adb install fileN.apk" from the command line.

Upvotes: 0

Related Questions