27 lines
676 B
Groovy
Raw Normal View History

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()
maven {
// All of React Native (JS, Obj-C sources, Android binaries) is installed from npm
url "$rootDir/../node_modules/react-native/android"
2016-01-13 14:29:41 -08:00
}
}
}