BlueWallet/android/build.gradle

94 lines
3.2 KiB
Groovy
Raw Normal View History

// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
minSdkVersion = 24
2023-11-11 12:33:50 +01:00
buildToolsVersion = "34.0.0"
2024-05-18 05:33:48 +02:00
compileSdkVersion = 34
targetSdkVersion = 34
2019-07-18 18:38:07 +02:00
googlePlayServicesVersion = "16.+"
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.
2024-06-16 00:06:43 +02:00
ndkVersion = "26.1.10909125"
kotlin_version = '1.9.25'
2024-07-20 02:18:44 +02:00
kotlinVersion = '1.9.25'
}
repositories {
google()
mavenCentral()
}
dependencies {
2024-07-20 02:36:08 +02:00
classpath("com.android.tools.build:gradle")
classpath("com.facebook.react:react-native-gradle-plugin")
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin")
2021-08-20 18:26:46 +02:00
classpath("com.bugsnag:bugsnag-android-gradle-plugin:5.+")
classpath 'com.google.gms:google-services:4.4.2' // Google Services plugin
}
}
allprojects {
repositories {
2023-03-04 18:51:11 +01:00
maven {
url("$rootDir/../node_modules/detox/Detox-android")
}
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"
}
}
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")
}
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
}
}
2020-03-16 14:51:08 +01:00
subprojects {
2024-07-20 02:18:44 +02:00
afterEvaluate { project ->
if (project.plugins.hasPlugin("com.android.application") || project.plugins.hasPlugin("com.android.library")) {
project.android {
// Enable buildConfig feature
buildFeatures {
buildConfig = true
}
// Set namespace if not already set
if (!namespace) {
def manifestFile = android.sourceSets.main.manifest.srcFile
if (manifestFile.exists()) {
def manifestContent = new XmlParser().parse(manifestFile)
def packageName = manifestContent.@package
if (packageName) {
namespace = packageName
}
}
}
2023-11-11 12:33:50 +01:00
buildToolsVersion "34.0.0"
2024-06-06 05:13:57 +02:00
compileSdkVersion 34
2024-07-20 02:18:44 +02:00
defaultConfig {
minSdkVersion 24
}
2020-03-16 14:51:08 +01:00
}
}
tasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile) {
if (project.plugins.hasPlugin("com.android.application") || project.plugins.hasPlugin("com.android.library")) {
kotlinOptions.jvmTarget = android.compileOptions.sourceCompatibility
} else {
kotlinOptions.jvmTarget = sourceCompatibility
}
}
2020-03-16 14:51:08 +01:00
}
2024-07-20 02:18:44 +02:00
}