38 lines
893 B
Groovy
Raw Normal View History

2015-12-06 22:25:18 -08:00
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
2019-06-19 14:37:21 +07:00
ext {
buildToolsVersion = "28.0.3"
2019-06-19 14:46:20 +07:00
minSdkVersion = 16
2019-06-19 14:37:21 +07:00
compileSdkVersion = 28
targetSdkVersion = 28
supportLibVersion = "28.0.0"
}
2015-12-06 22:25:18 -08:00
repositories {
jcenter()
2019-06-19 14:37:21 +07:00
google()
2015-12-06 22:25:18 -08:00
}
dependencies {
2019-06-19 14:37:21 +07:00
classpath 'com.android.tools.build:gradle:3.4.1'
2015-12-06 22:25:18 -08:00
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
mavenLocal()
2019-07-06 07:37:38 +07:00
google()
2019-06-19 14:37:21 +07:00
maven {
url "https://jitpack.io"
}
2015-12-06 22:25:18 -08:00
jcenter()
2016-09-20 04:46:15 +04:00
maven {
// All of React Native (JS, Obj-C sources, Android binaries) is installed from npm
url "$rootDir/../node_modules/react-native/android"
}
2015-12-06 22:25:18 -08:00
}
}