Some times we want to install built apps (apk files) in our virtual device.
It is simple we just have to copy that apk file in to platform-tools folder in Android sdk directory.
Then execute this command in command prompt in platform-tools directory.
adb install appName.apk
"appName.apk" should replaced by name of the app that you want to replace.
see the following example screen shot.
Friday, May 1, 2015
Subscribe to:
Posts (Atom)
Optimize you working enviorenment : Single command to create & move to a directory in linux (C Shell, Bash)
Usually move to a directory just after creating is bit of a anxious task specially if the directory name is too long. mkdir long-name-of...
-
PPA stands for Personal Package Archive and it is a special software repository for uploading source packages to be built and published as a...
-
When we write a C++ program we use g++ -Wall -o sample sample.cpp command (file name is sample.cpp) to compile the program then we run the ...
-
Binary search tree is one of most important data structure in programming.So lets see how to work with a binary search tree manually. Main ...