mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2024-11-19 09:50:15 +01:00
97 lines
3.3 KiB
Groovy
97 lines
3.3 KiB
Groovy
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
buildscript {
|
|
ext {
|
|
minSdkVersion = 28
|
|
supportLibVersion = "28.0.0"
|
|
buildToolsVersion = "33.0.0"
|
|
compileSdkVersion = 33
|
|
targetSdkVersion = 33
|
|
googlePlayServicesVersion = "16.+"
|
|
googlePlayServicesIidVersion = "16.0.1"
|
|
firebaseVersion = "17.3.4"
|
|
firebaseMessagingVersion = "21.1.0"
|
|
|
|
// We use NDK 23 which has both M1 support and is the side-by-side NDK version from AGP.
|
|
ndkVersion = "23.1.7779620"
|
|
kotlin_version = '1.8.0'
|
|
kotlinVersion = '1.8.0'
|
|
|
|
}
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
dependencies {
|
|
classpath("com.android.tools.build:gradle:7.4.2")
|
|
classpath("com.bugsnag:bugsnag-android-gradle-plugin:5.+")
|
|
classpath 'com.google.gms:google-services:4.3.14' // Google Services plugin
|
|
classpath("com.facebook.react:react-native-gradle-plugin")
|
|
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version")
|
|
|
|
}
|
|
}
|
|
|
|
allprojects {
|
|
repositories {
|
|
maven {
|
|
url("$rootDir/../node_modules/detox/Detox-android")
|
|
}
|
|
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 {
|
|
// We don't want to fetch react-native from Maven Central as there are
|
|
// older versions over there.
|
|
content {
|
|
excludeGroup "com.facebook.react"
|
|
}
|
|
}
|
|
mavenLocal()
|
|
maven {
|
|
// All of React Native (JS, Obj-C sources, Android binaries) is installed from npm
|
|
url("$rootDir/../node_modules/react-native/android")
|
|
}
|
|
maven {
|
|
// Android JSC is installed from npm
|
|
url("$rootDir/../node_modules/jsc-android/dist")
|
|
}
|
|
google()
|
|
maven { url 'https://www.jitpack.io' }
|
|
}
|
|
}
|
|
|
|
subprojects {
|
|
afterEvaluate {project ->
|
|
if (project.hasProperty("android")) {
|
|
android {
|
|
buildToolsVersion '30.0.3'
|
|
compileSdkVersion 31
|
|
defaultConfig {
|
|
minSdkVersion 28
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
subprojects { subproject ->
|
|
if(project['name'] == 'react-native-widget-center') {
|
|
project.configurations { compile { } }
|
|
}
|
|
}
|