2018-12-11 22:52:46 +00:00
|
|
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
|
|
|
|
buildscript {
|
|
|
|
ext {
|
2021-05-03 16:09:46 +01:00
|
|
|
minSdkVersion = 28
|
2019-01-25 01:12:07 -05:00
|
|
|
supportLibVersion = "28.0.0"
|
2021-05-05 18:12:08 +01:00
|
|
|
buildToolsVersion = "30.0.3"
|
|
|
|
compileSdkVersion = 30
|
|
|
|
targetSdkVersion = 30
|
2019-07-18 17:38:07 +01:00
|
|
|
googlePlayServicesVersion = "16.+"
|
2021-05-08 13:33:09 +01:00
|
|
|
googlePlayServicesIidVersion = "16.0.1"
|
2019-07-18 17:38:07 +01:00
|
|
|
firebaseVersion = "17.3.4"
|
2020-07-18 20:33:43 +01:00
|
|
|
firebaseMessagingVersion = "20.2.1"
|
2021-09-30 10:54:46 -04:00
|
|
|
ndkVersion = "23.0.7599858"
|
2018-12-11 22:52:46 +00:00
|
|
|
}
|
|
|
|
repositories {
|
|
|
|
google()
|
2021-07-06 05:38:53 -04:00
|
|
|
mavenCentral()
|
2018-12-11 22:52:46 +00:00
|
|
|
}
|
|
|
|
dependencies {
|
2021-08-30 09:23:25 +00:00
|
|
|
classpath('com.android.tools.build:gradle:4.2.2')
|
2021-08-20 17:26:46 +01:00
|
|
|
classpath("com.bugsnag:bugsnag-android-gradle-plugin:5.+")
|
2021-08-30 09:23:28 +00:00
|
|
|
classpath 'com.google.gms:google-services:4.3.10' // Google Services plugin
|
2020-07-18 20:33:43 +01:00
|
|
|
|
2018-12-11 22:52:46 +00:00
|
|
|
|
|
|
|
// NOTE: Do not place your application dependencies here; they belong
|
|
|
|
// in the individual module build.gradle files
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
repositories {
|
2021-07-06 05:38:53 -04:00
|
|
|
jcenter() {
|
|
|
|
content {
|
|
|
|
includeModule("com.facebook.yoga", "proguard-annotations")
|
|
|
|
includeModule("com.facebook.fbjni", "fbjni-java-only")
|
|
|
|
includeModule("com.facebook.fresco", "fresco")
|
|
|
|
includeModule("com.facebook.fresco", "stetho")
|
|
|
|
includeModule("com.facebook.fresco", "fbcore")
|
|
|
|
includeModule("com.facebook.fresco", "drawee")
|
|
|
|
includeModule("com.facebook.fresco", "imagepipeline")
|
|
|
|
includeModule("com.facebook.fresco", "imagepipeline-native")
|
|
|
|
includeModule("com.facebook.fresco", "memory-type-native")
|
|
|
|
includeModule("com.facebook.fresco", "memory-type-java")
|
|
|
|
includeModule("com.facebook.fresco", "nativeimagefilters")
|
|
|
|
includeModule("com.facebook.stetho", "stetho")
|
|
|
|
includeModule("com.wei.android.lib", "fingerprintidentify")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
mavenCentral()
|
2018-12-11 22:52:46 +00:00
|
|
|
mavenLocal()
|
|
|
|
maven {
|
|
|
|
// All of React Native (JS, Obj-C sources, Android binaries) is installed from npm
|
2019-07-12 23:34:06 +01: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 22:52:46 +00:00
|
|
|
}
|
2020-03-16 13:51:08 +00:00
|
|
|
maven {
|
|
|
|
// All of Detox' artifacts are provided via the npm module
|
|
|
|
url "$rootDir/../node_modules/detox/Detox-android"
|
|
|
|
}
|
2019-07-12 23:34:06 +01:00
|
|
|
google()
|
2020-06-18 11:49:36 -04:00
|
|
|
maven { url 'https://www.jitpack.io' }
|
2019-07-12 23:34:06 +01:00
|
|
|
}
|
2018-12-11 22:52:46 +00:00
|
|
|
}
|
2020-03-16 13:51:08 +00:00
|
|
|
|
|
|
|
subprojects {
|
|
|
|
afterEvaluate {project ->
|
|
|
|
if (project.hasProperty("android")) {
|
|
|
|
android {
|
2021-05-05 18:12:08 +01:00
|
|
|
compileSdkVersion 30
|
|
|
|
buildToolsVersion '30.0.3'
|
2021-01-10 22:13:23 -05:00
|
|
|
compileSdkVersion 29
|
2021-07-06 05:38:53 -04:00
|
|
|
defaultConfig {
|
2021-07-27 11:51:57 -04:00
|
|
|
minSdkVersion 28
|
2021-07-06 05:38:53 -04:00
|
|
|
}
|
2020-03-16 13:51:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-07-22 02:22:02 -05:00
|
|
|
}
|