aretherecookies-mobile/android/build.gradle

42 lines
1.1 KiB
Groovy
Raw Permalink Normal View History

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 {
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 {
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")
}
// 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
}
}