Skip to content

Commit

Permalink
Update Gradle configs
Browse files Browse the repository at this point in the history
  • Loading branch information
borisyankov committed Oct 25, 2018
1 parent 047cf82 commit 439fdc8
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@ buildscript {
repositories {
jcenter()
google()
maven {
url 'https://maven.google.com/'
name 'Google'
}
}
dependencies {
classpath 'com.android.tools.build:gradle:3.1.4'
Expand All @@ -31,5 +35,14 @@ allprojects {
// All of React Native (JS, Obj-C sources, Android binaries) is installed from npm
url "$rootDir/../node_modules/react-native/android"
}
maven {
url 'https://maven.google.com/'
name 'Google'
}
}
}

task wrapper(type: Wrapper) {
gradleVersion = '4.4'
distributionUrl = distributionUrl.replace("bin", "all")
}

0 comments on commit 439fdc8

Please sign in to comment.