2016-02-22 22:04:42 +00:00
|
|
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
|
2019-08-07 10:08:36 +00:00
|
|
|
/**
|
|
|
|
* Project-wide gradle configuration properties for use by all modules
|
|
|
|
*/
|
|
|
|
ext {
|
2023-06-20 13:20:05 +00:00
|
|
|
// kotlin_version is needed for react-native-camera-kit library
|
2023-12-28 14:50:25 +00:00
|
|
|
kotlin_version = project.kotlinPluginVersion
|
2023-12-11 15:52:23 +00:00
|
|
|
RNNKotlinVersion = project.kotlinPluginVersion
|
|
|
|
RNGH_kotlinVersion = project.kotlinPluginVersion
|
2019-08-07 10:08:36 +00:00
|
|
|
buildToolsVersion = project.buildToolsVersion
|
|
|
|
minSdkVersion = Integer.valueOf(project.minSdkVersion)
|
|
|
|
compileSdkVersion = Integer.valueOf(project.compileSdkVersion)
|
|
|
|
targetSdkVersion = Integer.valueOf(project.targetSdkVersion)
|
|
|
|
supportLibVersion = project.supportLibVersion
|
2019-08-06 16:16:51 +00:00
|
|
|
gradlePluginVersion = project.gradlePluginVersion
|
2023-12-28 14:50:25 +00:00
|
|
|
kotlinVersion = project.kotlinPluginVersion
|
2024-03-22 14:21:44 +00:00
|
|
|
kotlinPluginVersion = project.kotlinPluginVersion
|
|
|
|
kotlinToolsVersion = project.kotlinPluginVersion
|
2023-12-11 15:52:23 +00:00
|
|
|
ndkVersion = "25.2.9519653"
|
2019-08-07 10:08:36 +00:00
|
|
|
}
|
|
|
|
|
2016-02-22 22:04:42 +00:00
|
|
|
buildscript {
|
|
|
|
repositories {
|
2018-12-10 12:09:11 +00:00
|
|
|
flatDir { dirs "libs", "${rootDir}/app/libs" }
|
2017-12-28 18:53:18 +00:00
|
|
|
google()
|
2022-05-04 17:38:21 +00:00
|
|
|
mavenCentral()
|
2016-02-22 22:04:42 +00:00
|
|
|
}
|
|
|
|
dependencies {
|
2023-06-14 01:47:41 +00:00
|
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:${project.ext.kotlinPluginVersion}"
|
2023-12-11 15:52:23 +00:00
|
|
|
classpath("com.android.tools.build:gradle")
|
2023-06-14 01:47:41 +00:00
|
|
|
classpath("com.facebook.react:react-native-gradle-plugin")
|
2024-03-22 14:21:44 +00:00
|
|
|
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin")
|
2016-02-22 22:04:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-04 12:38:41 +00:00
|
|
|
subprojects {
|
|
|
|
afterEvaluate {
|
|
|
|
if (project.hasProperty("android")) {
|
|
|
|
android {
|
2019-08-07 10:08:36 +00:00
|
|
|
compileSdkVersion rootProject.ext.compileSdkVersion
|
|
|
|
buildToolsVersion rootProject.ext.buildToolsVersion
|
2019-03-04 12:38:41 +00:00
|
|
|
|
|
|
|
defaultConfig {
|
2019-08-07 10:08:36 +00:00
|
|
|
targetSdkVersion rootProject.ext.targetSdkVersion
|
2019-03-04 12:38:41 +00:00
|
|
|
}
|
2024-03-23 09:42:05 +00:00
|
|
|
|
|
|
|
// Speed up Tests Stage
|
|
|
|
tasks.withType(Test).configureEach {
|
|
|
|
// https://docs.gradle.org/current/userguide/performance.html#execute_tests_in_parallel
|
|
|
|
maxParallelForks = Runtime.runtime.availableProcessors().intdiv(2) ?: 1
|
|
|
|
// https://docs.gradle.org/current/userguide/performance.html#fork_tests_into_multiple_processes
|
|
|
|
forkEvery = 100
|
|
|
|
// https://docs.gradle.org/current/userguide/performance.html#disable_reports
|
|
|
|
reports.html.required = false
|
|
|
|
reports.junitXml.required = false
|
|
|
|
}
|
|
|
|
// Speed up Java Compile Stage
|
|
|
|
// https://docs.gradle.org/current/userguide/performance.html#run_the_compiler_as_a_separate_process
|
|
|
|
tasks.withType(JavaCompile).configureEach {
|
|
|
|
options.fork = true
|
|
|
|
}
|
|
|
|
|
2019-03-04 12:38:41 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-03-22 14:21:44 +00:00
|
|
|
apply plugin: "com.facebook.react.rootproject"
|
|
|
|
|
2016-02-22 22:04:42 +00:00
|
|
|
allprojects {
|
2019-06-04 16:50:29 +00:00
|
|
|
beforeEvaluate {
|
2022-05-04 17:38:21 +00:00
|
|
|
if (System.env.STATUS_GO_ANDROID_LIBDIR == null || System.env.STATUS_GO_ANDROID_LIBDIR == "") {
|
|
|
|
throw new GradleException('STATUS_GO_ANDROID_LIBDIR environment variable is not valid!')
|
|
|
|
}
|
2019-06-04 16:50:29 +00:00
|
|
|
}
|
2016-02-22 22:04:42 +00:00
|
|
|
repositories {
|
|
|
|
mavenLocal()
|
2022-05-04 17:38:21 +00:00
|
|
|
// Android JSC is installed from npm
|
|
|
|
maven { url("$rootDir/../node_modules/jsc-android/dist") }
|
|
|
|
// For geth, function, and status-go
|
2019-05-02 18:13:16 +00:00
|
|
|
flatDir { dirs "libs", System.env.STATUS_GO_ANDROID_LIBDIR }
|
2022-05-04 17:38:21 +00:00
|
|
|
google()
|
|
|
|
mavenCentral()
|
2023-06-14 01:47:41 +00:00
|
|
|
maven { url 'https://mvnrepository.com/artifact/com.github.gundy/semver4j'}
|
2016-02-22 22:04:42 +00:00
|
|
|
}
|
2018-06-28 10:50:17 +00:00
|
|
|
}
|