ecency-mobile/android/build.gradle

97 lines
3.3 KiB
Groovy
Raw Normal View History

2018-07-20 15:57:12 +03:00
// Top-level build file where you can add configuration options common to all sub-projects/modules.
2019-09-13 09:58:29 +03:00
import groovy.json.JsonSlurper
def getNpmVersion() {
def inputFile = new File(projectDir.getPath() + "/../package.json")
def packageJson = new JsonSlurper().parseText(inputFile.text)
return packageJson["version"]
}
def getNpmVersionArray() { // major [0], minor [1], patch [2]
def (major, minor, patch) = getNpmVersion().tokenize('.')
return [Integer.parseInt(major), Integer.parseInt(minor), Integer.parseInt(patch)] as int[]
}
2018-07-20 15:57:12 +03:00
buildscript {
ext {
2022-10-20 15:46:58 +03:00
buildToolsVersion = "31.0.0"
minSdkVersion = 23
2022-10-20 15:46:58 +03:00
compileSdkVersion = 31
targetSdkVersion = 31
2019-10-04 18:56:22 +03:00
googlePlayServicesVisionVersion = "17.0.2"
googlePlayServicesVersion = "16.+"
firebaseVersion = "17.3.4"
2022-10-21 16:09:38 +03:00
kotlinVersion = "1.6.0"
2022-10-20 15:46:58 +03:00
if (System.properties['os.arch'] == "aarch64") {
// For M1 Users we need to use the NDK 24 which added support for aarch64
ndkVersion = "24.0.8215888"
} else {
// Otherwise we default to the side-by-side NDK version from AGP.
ndkVersion = "21.4.7075529"
}
}
2018-07-20 15:57:12 +03:00
repositories {
google()
2021-09-16 16:13:25 +03:00
mavenCentral()
2018-07-20 15:57:12 +03:00
}
dependencies {
2022-10-20 15:46:58 +03:00
classpath("com.android.tools.build:gradle:7.2.1")
classpath 'com.google.gms:google-services:4.3.10'
2022-10-20 15:46:58 +03:00
classpath("com.facebook.react:react-native-gradle-plugin")
classpath("de.undercouch:gradle-download-task:5.0.1")
2022-10-21 16:09:38 +03:00
classpath 'com.bugsnag:bugsnag-android-gradle-plugin:7.+'
2018-07-20 15:57:12 +03:00
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
2021-09-16 16:13:25 +03:00
google()
2018-07-20 15:57:12 +03:00
mavenLocal()
maven {
// All of React Native (JS, Obj-C sources, Android binaries) is installed from npm
2019-09-11 22:42:49 +03:00
url("$rootDir/../node_modules/react-native/android")
2018-07-20 15:57:12 +03:00
}
maven {
2019-09-11 22:42:49 +03:00
// Android JSC is installed from npm
url("$rootDir/../node_modules/jsc-android/dist")
}
2018-07-20 15:57:12 +03:00
2021-07-29 13:40:20 +03:00
maven { url "https://www.jitpack.io" }
2022-10-17 11:42:23 +03: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"
}
}
//TODO: remove when replacement for selective groups is available
//the jcenter will be accessible as read-only indefinitely so we should be
//good for now with these selective packages as they are not available off of
//jCenter
jcenter() {
content {
// these groups only available in jcenter otherwise we don't want to rely on jcenter.
includeGroup("com.facebook.yoga")
includeGroup("com.facebook.fbjni")
includeGroup("com.henninghall.android")
includeModule("com.yqritc", "android-scalablevideoview")
includeModule("com.wei.android.lib", "fingerprintidentify")
}
}
2018-12-17 15:34:00 +03:00
}
2018-12-10 12:12:04 +03:00
}
2019-09-13 09:58:29 +03:00
subprojects {project ->
ext {
def npmVersion = getNpmVersionArray()
versionMajor = npmVersion[0]
versionMinor = npmVersion[1]
versionPatch = npmVersion[2]
}
}