When using the adb install MyTestApp.apk command I get:
Can't find MyTestApp.apk to install
What’s the matter?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You have three different directories:
In general you have to run the command
adb installin the following way:So as
/path_to_the_3_dir/is included into PATH variable you do not need to specify the whole path. You can simply calladb install.To make things easier you can change your current directory to the directory where your apk file located (using
cdcommand) and call simplyadb install MyTestApp.apk