2017-01-16 20:53:55 -06:00
|
|
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
|
|
|
|
|
|
buildscript {
|
2018-11-24 17:32:19 -06:00
|
|
|
ext {
|
2019-01-05 11:26:09 -06:00
|
|
|
buildToolsVersion = "28.0.3"
|
2019-09-21 15:45:07 +00:00
|
|
|
minSdkVersion = 16
|
|
|
|
|
compileSdkVersion = 28
|
|
|
|
|
targetSdkVersion = 28
|
|
|
|
|
supportLibVersion = "28.0.0"
|
2018-11-24 17:32:19 -06:00
|
|
|
}
|
2017-01-16 20:53:55 -06:00
|
|
|
repositories {
|
2018-11-24 17:32:19 -06:00
|
|
|
google()
|
2017-01-16 20:53:55 -06:00
|
|
|
jcenter()
|
|
|
|
|
}
|
|
|
|
|
dependencies {
|
2019-09-21 15:45:07 +00:00
|
|
|
classpath("com.android.tools.build:gradle:3.4.1")
|
|
|
|
|
|
|
|
|
|
// NOTE: Do not place your application dependencies here; they belong
|
|
|
|
|
// in the individual module build.gradle files
|
2017-01-16 20:53:55 -06:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
|
repositories {
|
2019-06-22 11:43:05 -05:00
|
|
|
mavenLocal()
|
2017-01-16 20:53:55 -06:00
|
|
|
maven {
|
|
|
|
|
// All of React Native (JS, Obj-C sources, Android binaries) is installed from npm
|
2019-09-21 15:45:07 +00:00
|
|
|
url("$rootDir/../node_modules/react-native/android")
|
2017-01-16 20:53:55 -06:00
|
|
|
}
|
2019-09-21 15:45:07 +00:00
|
|
|
maven {
|
|
|
|
|
// Android JSC is installed from npm
|
|
|
|
|
url("$rootDir/../node_modules/jsc-android/dist")
|
|
|
|
|
}
|
|
|
|
|
|
2019-09-28 17:29:33 +00:00
|
|
|
// needed for react-native-image-crop-picker
|
|
|
|
|
maven { url "https://www.jitpack.io" }
|
|
|
|
|
|
2019-09-21 15:45:07 +00:00
|
|
|
google()
|
|
|
|
|
jcenter()
|
2017-01-16 20:53:55 -06:00
|
|
|
}
|
|
|
|
|
}
|