mirror of
https://github.com/status-im/react-native-mapbox-gl.git
synced 2026-08-30 20:41:08 +00:00
25 lines
699 B
Groovy
25 lines
699 B
Groovy
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
buildscript {
|
|
repositories {
|
|
jcenter()
|
|
}
|
|
dependencies {
|
|
classpath 'com.android.tools.build:gradle:2.2.3'
|
|
|
|
// NOTE: Do not place your application dependencies here; they belong
|
|
// in the individual module build.gradle files
|
|
}
|
|
}
|
|
|
|
allprojects {
|
|
repositories {
|
|
mavenLocal()
|
|
jcenter()
|
|
maven { url "$rootDir/../node_modules/react-native/android" }
|
|
maven { url "https://jitpack.io" }
|
|
maven { url "http://oss.sonatype.org/content/repositories/snapshots/" }
|
|
maven { url "https://maven.google.com" }
|
|
}
|
|
}
|