2018-12-11 23:52:46 +01:00
|
|
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
|
|
|
|
buildscript {
|
|
|
|
ext {
|
2021-05-03 17:09:46 +02:00
|
|
|
minSdkVersion = 28
|
2019-01-25 07:12:07 +01:00
|
|
|
supportLibVersion = "28.0.0"
|
2020-10-07 14:24:36 +02:00
|
|
|
buildToolsVersion = "29.0.2"
|
|
|
|
compileSdkVersion = 29
|
|
|
|
targetSdkVersion = 29
|
2019-07-18 18:38:07 +02:00
|
|
|
googlePlayServicesVersion = "16.+"
|
|
|
|
firebaseVersion = "17.3.4"
|
2020-07-18 21:33:43 +02:00
|
|
|
firebaseMessagingVersion = "20.2.1"
|
2018-12-11 23:52:46 +01:00
|
|
|
}
|
|
|
|
repositories {
|
|
|
|
google()
|
|
|
|
jcenter()
|
|
|
|
}
|
2020-03-16 14:51:08 +01:00
|
|
|
ext.kotlinVersion = '1.3.+'
|
2018-12-11 23:52:46 +01:00
|
|
|
dependencies {
|
2020-07-22 09:22:02 +02:00
|
|
|
classpath('com.android.tools.build:gradle:4.0.1')
|
2020-03-16 14:51:08 +01:00
|
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
|
2020-07-18 21:33:43 +02:00
|
|
|
classpath 'com.google.gms:google-services:4.3.3' // Google Services plugin
|
|
|
|
|
2018-12-11 23:52:46 +01:00
|
|
|
|
|
|
|
// NOTE: Do not place your application dependencies here; they belong
|
|
|
|
// in the individual module build.gradle files
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
repositories {
|
|
|
|
mavenLocal()
|
|
|
|
maven {
|
|
|
|
// All of React Native (JS, Obj-C sources, Android binaries) is installed from npm
|
2019-07-13 00:34:06 +02:00
|
|
|
url("$rootDir/../node_modules/react-native/android")
|
|
|
|
}
|
|
|
|
maven {
|
|
|
|
// Android JSC is installed from npm
|
|
|
|
url("$rootDir/../node_modules/jsc-android/dist")
|
2018-12-11 23:52:46 +01:00
|
|
|
}
|
2020-03-16 14:51:08 +01:00
|
|
|
maven {
|
|
|
|
// All of Detox' artifacts are provided via the npm module
|
|
|
|
url "$rootDir/../node_modules/detox/Detox-android"
|
|
|
|
}
|
2019-07-13 00:34:06 +02:00
|
|
|
google()
|
|
|
|
jcenter()
|
2020-06-18 17:49:36 +02:00
|
|
|
maven { url 'https://www.jitpack.io' }
|
2019-07-13 00:34:06 +02:00
|
|
|
}
|
2018-12-11 23:52:46 +01:00
|
|
|
}
|
2020-03-16 14:51:08 +01:00
|
|
|
|
|
|
|
subprojects {
|
|
|
|
afterEvaluate {project ->
|
|
|
|
if (project.hasProperty("android")) {
|
|
|
|
android {
|
2021-01-11 04:13:23 +01:00
|
|
|
compileSdkVersion 29
|
2020-03-16 14:51:08 +01:00
|
|
|
buildToolsVersion '28.0.0'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-07-22 09:22:02 +02:00
|
|
|
}
|