This guide describes basic steps of the Android development environment setup that are required to run React Native android apps on an android emulator. We don't discuss developer tool configuration such as IDEs here.
On Mac, if you have installed XCode, Git is already installed, otherwise run the following:
On Linux, install Git via your package manager.
On Windows, download and install Git for Windows. During the setup process, choose "Run Git from Windows Command Prompt", which will add Git to your PATH
environment variable.
brew install android-sdk
IMPORTANT: Make sure the ANDROID_HOME
environment variable points to your existing Android SDK:
On Mac, add this to your ~/.bashrc
, ~/.bash_profile
or whatever your shell uses:
On Linux, add this to your ~/.bashrc
, ~/.bash_profile
or whatever your shell uses:
On Windows, go to Control Panel
-> System and Security
-> System
-> Change settings
-> Advanced
-> Environment variables
-> New
NOTE: You need to restart the Command Prompt (Windows) / Terminal Emulator (Mac OS X, Linux) to apply the new Environment variables.
React Native Android use gradle as a build system. We recommend to enable gradle daemon functionality which may result in up to 50% improvement in incremental build times for changes in java code. Learn here how to enable it for your platform.
android
); in the window that appears make sure you check:
Genymotion is much easier to set up than stock Google emulators. However, it's only free for personal use. If you want to use the stock Google emulator, see below.
android
; in the window that appears make sure you check:android avd
and click on Create...
Start...