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"
|
2023-03-04 18:51:11 +01:00
|
|
|
buildToolsVersion = "33.0.0"
|
|
|
|
compileSdkVersion = 33
|
|
|
|
targetSdkVersion = 33
|
2019-07-18 18:38:07 +02:00
|
|
|
googlePlayServicesVersion = "16.+"
|
2021-05-08 14:33:09 +02:00
|
|
|
googlePlayServicesIidVersion = "16.0.1"
|
2019-07-18 18:38:07 +02:00
|
|
|
firebaseVersion = "17.3.4"
|
2022-11-23 14:13:21 +01:00
|
|
|
firebaseMessagingVersion = "21.1.0"
|
2023-03-04 18:51:11 +01:00
|
|
|
|
|
|
|
// We use NDK 23 which has both M1 support and is the side-by-side NDK version from AGP.
|
|
|
|
ndkVersion = "23.1.7779620"
|
2022-12-28 12:39:52 +01:00
|
|
|
kotlin_version = '1.8.0'
|
2023-03-22 02:55:19 +01:00
|
|
|
kotlinVersion = '1.8.0'
|
|
|
|
|
2018-12-11 23:52:46 +01:00
|
|
|
}
|
|
|
|
repositories {
|
|
|
|
google()
|
2021-07-06 11:38:53 +02:00
|
|
|
mavenCentral()
|
2018-12-11 23:52:46 +01:00
|
|
|
}
|
|
|
|
dependencies {
|
2023-03-26 11:26:23 +02:00
|
|
|
classpath("com.android.tools.build:gradle:7.4.2")
|
2021-08-20 18:26:46 +02:00
|
|
|
classpath("com.bugsnag:bugsnag-android-gradle-plugin:5.+")
|
2022-09-27 03:11:40 +02:00
|
|
|
classpath 'com.google.gms:google-services:4.3.14' // Google Services plugin
|
2023-03-04 18:51:11 +01:00
|
|
|
classpath("com.facebook.react:react-native-gradle-plugin")
|
2022-10-11 14:47:32 +02:00
|
|
|
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version")
|
2018-12-11 23:52:46 +01:00
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
repositories {
|
2023-03-04 18:51:11 +01:00
|
|
|
maven {
|
|
|
|
url("$rootDir/../node_modules/detox/Detox-android")
|
|
|
|
}
|
2021-07-06 11:38:53 +02: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")
|
|
|
|
}
|
|
|
|
}
|
2022-02-11 12:47:06 +01:00
|
|
|
mavenCentral {
|
|
|
|
// We don't want to fetch react-native from Maven Central as there are
|
|
|
|
// older versions over there.
|
|
|
|
content {
|
|
|
|
excludeGroup "com.facebook.react"
|
|
|
|
}
|
|
|
|
}
|
2018-12-11 23:52:46 +01:00
|
|
|
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
|
|
|
}
|
2019-07-13 00:34:06 +02:00
|
|
|
google()
|
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-05-05 19:12:08 +02:00
|
|
|
buildToolsVersion '30.0.3'
|
2022-10-11 14:47:32 +02:00
|
|
|
compileSdkVersion 31
|
2021-07-06 11:38:53 +02:00
|
|
|
defaultConfig {
|
2021-07-27 17:51:57 +02:00
|
|
|
minSdkVersion 28
|
2021-07-06 11:38:53 +02:00
|
|
|
}
|
2020-03-16 14:51:08 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-07-22 09:22:02 +02:00
|
|
|
}
|
2023-03-04 18:51:11 +01:00
|
|
|
|
|
|
|
subprojects { subproject ->
|
|
|
|
if(project['name'] == 'react-native-widget-center') {
|
|
|
|
project.configurations { compile { } }
|
|
|
|
}
|
|
|
|
}
|