Reputation: 55
I have an apk file that I would like to run in the emulators but outside of eclipse.I see in the tools directory of the android sdk there is an emulator app but is there a way to test outside of eclipse?
Thanks
Upvotes: 2
Views: 3667
Reputation: 4318
If it is saying "failed and already exists" means: the apk which you are trying to install is already installed on the emaulator or the device.
Goto Settings--> Manage Applications --> Select the app (which you are trying to install) --> uninstall..
Now try; it should work.
Upvotes: 0
Reputation: 74064
Yes, you can test it outside eclipse.
emulator -avd YourVirtualDevice
adb install yourfile.apk
Upvotes: 5