I have eclipse and ADT and android SDK installed and I want to test apk files on my emulator.
I followed guides from stackoverflow, like this: How do I Install .apk files in the android emulator?
but these guides doesnt works a this point: I dont know where i have to put the APK file. For example, this command:
adb -s emulator-5554 install something.apk
It fails because can’t find my apk file. Where i have to put it?
You can put it anywhere on your system, just specify the path as part of your command line:
Or, change into the directory your APK is in first, then run your command:
Note: The above assumes you’re on Windows, substitute UNIX-style paths if you’re on Linux or Mac OSX.