In ubuntu, the apk software was installed on the android Virtual Machine for android development in the window some time ago. You can use the adb command to install the apk software on the android Virtual Machine. During this time, it was transferred to linux, I am using ubuntu. After setting up the android development environment, I began to install some common software for the android virtual machine, such as file browsers. First open the terminal, cd to the directory where the android SDK is located, and then enter the platform-tools Folder. After ls displays the file, you will find an executable file named adb, this adb command is used to install the apk software for the android virtual machine. Www.2cto.com [plain]./adb install ~ /ES_fileBrowser.apk
Then wait until the installation is complete. At this time, you will find that the elasticsearch file browser has been installed on the android virtual machine.
Install is followed by the path + File Name of the apk. In particular, I have seen that the installation of apk software for android virtual machines in linux is not very suitable for me. The executable files of adb are not in the android SDK/tools/directory, but in the android SDK/platform-tools/directory. Author: dingmingxin