aretherecookies-mobile/android/build.gradle

37 lines
878 B
Groovy
Raw 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-10 12:35:21 -06:00
ext {
compileSdkVersion = 27
targetSdkVersion = 27
buildToolsVersion = "27.0.3"
supportLibVersion = "27.1.1"
googlePlayServicesVersion = "15.0.1"
androidMapsUtilsVersion = "0.5+"
}
2017-01-16 20:53:55 -06:00
repositories {
2018-11-10 12:35:21 -06:00
google()
2017-01-16 20:53:55 -06:00
jcenter()
}
dependencies {
2018-11-10 12:35:21 -06:00
classpath 'com.android.tools.build:gradle:3.1.4'
2017-01-16 20:53:55 -06:00
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
2018-11-10 12:35:21 -06:00
google()
2017-01-16 20:53:55 -06:00
mavenLocal()
2018-11-10 12:35:21 -06:00
jcenter()
2017-01-16 20:53:55 -06:00
maven {
// All of React Native (JS, Obj-C sources, Android binaries) is installed from npm
url "$rootDir/../node_modules/react-native/android"
}
}
}
2018-11-03 12:09:35 -05:00
2018-11-10 12:35:21 -06:00