Is it possible to start developing android apps with React Native by installing android SDK and AVD manager but without installing android studio? I am using Ubuntu 16.04 and already installed Android SDK and AVD manager.
2 Answers
Yes, as I know RN needs XCode only when you want to start the iOS App.
On this page if you select Android and Linux you will get the steps to install RN and how to configure the project.
1 Comment
I think its possible to start writing apps in react-native without installing android studio. Probably for such you would require installing a virtual android device then rest would work.
I hope you've installed the following things:
npm install -g react-native-cli
Then to me you will have to install Android SDK tools that's necessary. Once you've installed the react-native-cli then set Environment Variables that can via opening terminal and type:
sudo vi ~/.bash_profile
then put this code:
export ANDROID_HOME=$HOME/Android/Sdk
export PATH=$PATH:$ANDROID_HOME/emulator
export PATH=$PATH:$ANDROID_HOME/tools
export PATH=$PATH:$ANDROID_HOME/tools/bin
export PATH=$PATH:$ANDROID_HOME/platform-tools
Then run:
react-native run-android
react-native start
Let's try out and confirm