Merge remote-tracking branch 'origin/master'

This commit is contained in:
Salakar 2017-10-04 20:10:09 +01:00
commit e432139e19
2 changed files with 9 additions and 4 deletions

View File

@ -67,12 +67,15 @@ required reference to the repositories section of the *project* level build.grad
```groovy
allprojects {
repositories {
// ...
mavenLocal()
jcenter()
maven {
// All of React Native (JS, Obj-C sources, Android binaries) is installed from npm
url "$rootDir/../node_modules/react-native/android"
},
// Add this below the existing maven property above:
}
// -------------------------------------------------
// Add this below the existing maven property above
// -------------------------------------------------
maven {
url 'https://maven.google.com'
}

View File

@ -66,7 +66,9 @@ allprojects {
// All of React Native (JS, Obj-C sources, Android binaries) is installed from npm
url "$rootDir/../node_modules/react-native/android"
}
// ADD THIS SECTION HERE
// -------------------------------------------------
// Add this below the existing maven property above
// -------------------------------------------------
maven {
url 'https://maven.google.com'
}