https://facebook.github.io/react-native/docs/getting-started.html#content http://facebook.github.io/react-native/docs/android-setup.html
We're going to be use io.js because node has a lot of trouble with the react-native
cli.
Download io.js - https://iojs.org/en/
brew install watchman
brew install gradle
brew install android-ndk
brew install android-sdk
sudo npm install -g react-native-cli
In your bash profile, export the android-sdk and android-ndk
export ANDROID_HOME=/usr/local/opt/android-sdk
export ANDROID_NDK=/usr/local/Cellar/android-ndk/r10e
Go into the root of an app created using react-native init
and run:
react-native run-android
git clone [email protected]:facebook/react-native.git
cd react-native
./gradlew :Examples:Movies:android:app:installDebug
# Start the packager in a separate shell (make sure you ran npm install):
./packager/packager.sh
https://www.npmjs.com/package/react-native#documentation
This isn't recommended, but the route I went down first before discovering the prior method.
gradle # to build
gradle assemble # to make unsigned apk
This will generate three files in project/build/outputs/apk/
app-debug-unaligned.apk
app-debug.apk
app-release-unsigned.apk
Gotcha's for doing it the hard way
It might complain that you are missing some deps or build tools when trying to build or install, you can install them from the command line using:
sudo android update sdk --no-ui --all --filter build-tools-23.0.1
android update sdk --no-ui --filter 'platform-tools'
- Enable USB debugging
- Ensure that your development computer can detect your device when connected via USB
adb -d install /build/outputs/apk/app-debug.apk
The -d flag specifies that you want to use the attached device (in case you also have an emulator running).
http://developer.android.com/tools/building/building-cmdline.html#RunningOnDevice
http://stackoverflow.com/questions/32572399/react-native-android-failed-to-load-js-bundle
See this when trying to run react-native run-android
?
Just delete the file node_modules/react-native/node_modules/react-tools/docs/js/react.js and everything is fine.
Is the command you specified correct?
android update sdk --no-ui --filter 'platform-tools'
...
Validate XML: https://dl.google.com/android/repository/sys-img/x86/addon-x86.xml
Parse XML: https://dl.google.com/android/repository/sys-img/x86/addon-x86.xml
Error: Ignoring unknown package filter 'platform-tools'
Warning: The package filter removed all packages. There is nothing to install.
Please consider trying to update again without a package filter.