This video shown you how to run android application on ubuntu with anbox. Anbox puts the Android operating system into a container, abstracts hardware access and integrates core system services into a GNU/Linux system. Every Android application will be integrated with your operating system like any other native application.
Install anbox using anbox-installer :
sudo apt install git git clone https://github.com/anbox/anbox-installer.git cd anbox-installer ./installer.sh
How to install android application :
sudo apt install android-tools-adb
Download android app (apk) from apkmirror.com, then install with the following command:
adb install android_app.apk
How to remove android application :
use the following command to list installed packages:
adb shell 'pm list package -f'
Type these comand to remove android application
adb uninnstall name_of_apk_file
ex : adb uninstall org.mozilla.firefox