###Installing React Native Android on Ubuntu
Here are the steps for getting a working Linux install for React Native:
- Install Java SDK
-
Install KVM
sudo apt-get install qemu-kvm libvirt-bin bridge-utils virt-manager
sudo adduser your_user libvirtd
- Logout and log back in
virsh -c qemu:///system list
should show you an empty list.
-
Install the Android SDK
- Download here
- After it finishes installing, you'll have an Android folder in your home directory.
- Create the following entries in your ~/.bashrc or ~/.zshrc
export ANDROID_HOME=/home/<your user>/Android/Sdk
alias android='/home/<your user>/Android/Sdk/tools/android'
- reload your shell
- Continue to step 4 in the official guide