Fix android installation docs

This commit is contained in:
Martín Fernández 2017-03-30 17:54:54 -03:00 committed by GitHub
parent 461b82d4a6
commit 325e263f37

View File

@ -26,20 +26,23 @@ Check the [roadmap here](https://github.com/Kureev/react-native-blur/issues/1)
react-native link react-native-blur
```
3. (Android only) Add the following to your `android/app/build.gradle`
```
repositories {
maven { url 'https://github.com/500px/500px-android-blur/raw/master/releases/' }
}
buildscript {
repositories {
maven { url 'https://github.com/500px/500px-android-blur/raw/master/releases/' }
}
dependencies {
classpath 'com.fivehundredpx:blurringview:1.0.0'
}
}
`android/build.gradle`
```
allprojects {
repositories {
maven { url 'https://github.com/500px/500px-android-blur/raw/master/releases/' }
}
}
```
`android/app/build.gradle`
```
dependencies {
compile 'com.fivehundredpx:blurringview:1.0.0'
}
```
4. Inside your code include JS part by adding
```javascript