mirror of
https://gitlab.com/wheres-the-tp/ui-mobile.git
synced 2026-01-25 09:54:55 -06:00
37 lines
987 B
Groovy
37 lines
987 B
Groovy
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
buildscript {
|
|
ext {
|
|
buildToolsVersion = "27.0.3"
|
|
minSdkVersion = 18
|
|
compileSdkVersion = 27
|
|
targetSdkVersion = 26
|
|
supportLibVersion = "27.1.1"
|
|
// supportLibVersion = "27.0.2"
|
|
// googlePlayServicesVersion = "15.0.1"
|
|
// androidMapsUtilsVersion = "0.5+"
|
|
}
|
|
repositories {
|
|
google()
|
|
jcenter()
|
|
}
|
|
dependencies {
|
|
classpath 'com.android.tools.build:gradle:3.2.1'
|
|
|
|
// NOTE: Do not place your application dependencies here; they belong
|
|
// in the individual module build.gradle files
|
|
}
|
|
}
|
|
|
|
allprojects {
|
|
repositories {
|
|
google()
|
|
mavenLocal()
|
|
google()
|
|
jcenter()
|
|
maven {
|
|
// All of React Native (JS, Obj-C sources, Android binaries) is installed from npm
|
|
url "$rootDir/../node_modules/react-native/android"
|
|
}
|
|
}
|
|
}
|