Some time ago, I used Android development in windows. I can use the ADB command to install the APK software for the android virtual machine,
During this time, I switched to Linux. I used ubuntu. After setting up the android development environment, I started
Android virtual machines install some common software, 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. ls displays
File, you will find an executable file named ADB, that is, using this ADB command for Android Virtual Machine Installation
APK software.
./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 ADB executable file is not in the android SDK/tools/directory, but in the android SDK/platform-tools/directory.
.