mirror of
https://gitlab.com/wheres-the-tp/ui-mobile.git
synced 2026-01-25 07:24:56 -06:00
38 lines
1,001 B
Groovy
38 lines
1,001 B
Groovy
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
buildscript {
|
|
ext {
|
|
buildToolsVersion = "28.0.3"
|
|
minSdkVersion = 18
|
|
compileSdkVersion = 27
|
|
targetSdkVersion = 26
|
|
supportLibVersion = "27.1.1"
|
|
googlePlayServicesVersion = "15.0.1"
|
|
androidMapsUtilsVersion = "0.5+"
|
|
}
|
|
repositories {
|
|
google()
|
|
jcenter()
|
|
maven {
|
|
url 'https://maven.fabric.io/public'
|
|
}
|
|
}
|
|
dependencies {
|
|
classpath 'com.android.tools.build:gradle:3.2.1'
|
|
classpath 'com.google.gms:google-services:4.0.1'
|
|
classpath 'io.fabric.tools:gradle:1.25.4'
|
|
}
|
|
}
|
|
|
|
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"
|
|
}
|
|
}
|
|
}
|