2016-01-13 14:29:41 -08:00
|
|
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
|
|
|
|
buildscript {
|
|
|
|
repositories {
|
2018-05-08 11:32:28 +02:00
|
|
|
google()
|
2016-01-13 14:29:41 -08:00
|
|
|
jcenter()
|
|
|
|
}
|
|
|
|
dependencies {
|
2018-05-08 11:32:28 +02:00
|
|
|
classpath 'com.android.tools.build:gradle:3.1.2'
|
2016-01-13 14:29:41 -08:00
|
|
|
|
|
|
|
// NOTE: Do not place your application dependencies here; they belong
|
|
|
|
// in the individual module build.gradle files
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
repositories {
|
2018-05-08 11:32:28 +02:00
|
|
|
google()
|
2016-01-13 14:29:41 -08:00
|
|
|
jcenter()
|
2018-05-08 11:32:28 +02:00
|
|
|
mavenLocal()
|
2016-03-03 14:20:40 -08:00
|
|
|
maven {
|
|
|
|
// All of React Native (JS, Obj-C sources, Android binaries) is installed from npm
|
2017-01-10 14:00:23 +01:00
|
|
|
url "$rootDir/../node_modules/react-native/android"
|
2016-01-13 14:29:41 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|