Question

I am trying to run apk on Emulator using Ubuntu, but facing problems, i have stored my apk to platform-tools

~/adt-bundle-linux-x86-20131030/sdk/platform-tools

but now when i am trying to install apk via command like this:

 system@sys02:~/adt-bundle-linux-x86-20131030/sdk/platform-tools$ ./adb install ChurchApp-2.7 Beta.apk

getting can't find 'ChurchApp-2.7' to install

Était-ce utile?

La solution 2

finally done, i used below command to run apk on Emulator

system@sys02:~/adt-bundle-linux-x86-20131030/sdk/platform-tools$ ./adb install ChurchApp-2.7.apk

Note:- don't forget to rename apk

Autres conseils

Make sure that you have a correct path to your ChurchApp (I don't think so it's under sdk/platform-tools). You should also escape the space in apk name:

$ ./adb install ChurchApp-2.7\ Beta.apk
Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top