Commit 00783a11 authored by Gant Laborde's avatar Gant Laborde Committed by GitHub

Merge pull request #95 from stovmascript/master

Fix #94 Complete instructions for manual Android installation
parents e643c9a3 8c68557c
...@@ -55,6 +55,25 @@ Run your project (Cmd+R) ...@@ -55,6 +55,25 @@ Run your project (Cmd+R)
### Android ### Android
- in `android/app/build.gradle`:
```diff
dependencies {
...
compile "com.facebook.react:react-native:+" // From node_modules
+ compile project(':react-native-device-info')
}
```
- in `android/settings.gradle`:
```diff
...
include ':app'
+ include ':react-native-device-info'
+ project(':react-native-device-info').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-device-info/android')
```
#### With React Native 0.29+ #### With React Native 0.29+
- in `MainApplication.java`: - in `MainApplication.java`:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment