ecency-mobile/android/build.gradle

72 lines
2.1 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 {
2019-05-29 14:32:35 +03:00
buildToolsVersion = "28.0.3"
minSdkVersion = 16
2019-05-29 14:32:35 +03:00
compileSdkVersion = 28
targetSdkVersion = 28
supportLibVersion = "28.0.0"
}
2018-07-20 15:57:12 +03:00
repositories {
google()
2018-11-19 21:54:44 +03:00
jcenter()
2018-07-20 15:57:12 +03:00
}
dependencies {
2019-09-13 09:58:29 +03:00
classpath('com.android.tools.build:gradle:3.5.0')
2019-09-11 22:42:49 +03:00
2019-09-13 09:58:29 +03:00
classpath 'com.google.gms:google-services:4.0.2'
classpath 'com.bugsnag:bugsnag-android-gradle-plugin:4.+'
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 {
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
}
2019-01-25 16:40:36 +03:00
maven {
2019-09-11 22:42:49 +03:00
// Android JSC is installed from npm
url("$rootDir/../node_modules/jsc-android/dist")
2019-01-25 16:40:36 +03:00
}
2019-09-13 09:58:29 +03:00
// react-native-image-crop-picker
maven { url 'https://maven.google.com' }
maven { url "https://jitpack.io" }
2018-07-20 15:57:12 +03:00
2019-09-11 22:42:49 +03:00
google()
jcenter()
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 ->
if (project.name.contains('react-native-fast-image')|| project.name.contains('realm')) {
buildscript {
repositories {
maven { url "https://dl.bintray.com/android/android-tools/" }
}
}
}
ext {
def npmVersion = getNpmVersionArray()
versionMajor = npmVersion[0]
versionMinor = npmVersion[1]
versionPatch = npmVersion[2]
}
}