33 lines
834 B
Groovy
Raw Normal View History

2017-02-14 13:46:50 +02:00
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
jcenter()
2018-01-11 19:28:43 +02:00
maven {
url 'https://maven.google.com/'
name 'Google'
}
2017-02-14 13:46:50 +02:00
}
dependencies {
2018-01-11 19:28:43 +02:00
classpath 'com.android.tools.build:gradle:2.2.3'
2017-02-14 13:46:50 +02:00
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
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"
}
2018-01-11 19:28:43 +02:00
maven {
url 'https://maven.google.com/'
name 'Google'
}
2017-02-14 13:46:50 +02:00
}
}