2018-07-20 15:57:12 +03:00
|
|
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
2018-12-17 15:34:00 +03:00
|
|
|
import groovy.json.JsonSlurper
|
|
|
|
|
|
|
|
def getNpmVersion() {
|
2018-12-18 17:15:24 +03:00
|
|
|
def inputFile = new File(projectDir.getPath() + "/../package.json")
|
2018-12-17 15:34:00 +03:00
|
|
|
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 {
|
2018-10-04 05:18:36 +03:00
|
|
|
ext {
|
2019-05-29 14:32:35 +03:00
|
|
|
buildToolsVersion = "28.0.3"
|
2018-10-04 05:18:36 +03:00
|
|
|
minSdkVersion = 16
|
2019-05-29 14:32:35 +03:00
|
|
|
compileSdkVersion = 28
|
|
|
|
targetSdkVersion = 28
|
|
|
|
supportLibVersion = "28.0.0"
|
2018-10-04 05:18:36 +03:00
|
|
|
}
|
2018-07-20 15:57:12 +03:00
|
|
|
repositories {
|
2018-10-04 05:18:36 +03:00
|
|
|
google()
|
2018-11-19 21:54:44 +03:00
|
|
|
jcenter()
|
2018-07-20 15:57:12 +03:00
|
|
|
}
|
|
|
|
dependencies {
|
2019-05-29 14:32:35 +03:00
|
|
|
classpath 'com.android.tools.build:gradle:3.3.1'
|
2018-12-16 21:08:20 +03:00
|
|
|
// Add this line
|
2018-12-16 22:28:26 +03:00
|
|
|
classpath 'com.google.gms:google-services:4.0.2'
|
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
|
2019-05-30 18:40:24 +03:00
|
|
|
classpath 'com.bugsnag:bugsnag-android-gradle-plugin:4.+'
|
2018-07-20 15:57:12 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
repositories {
|
|
|
|
mavenLocal()
|
2018-11-19 21:54:44 +03:00
|
|
|
google()
|
2018-07-20 15:57:12 +03:00
|
|
|
jcenter()
|
|
|
|
maven {
|
|
|
|
// All of React Native (JS, Obj-C sources, Android binaries) is installed from npm
|
|
|
|
url "$rootDir/../node_modules/react-native/android"
|
|
|
|
}
|
2018-12-04 16:38:14 +03:00
|
|
|
maven { url 'https://maven.google.com' }
|
|
|
|
maven { url "https://jitpack.io" }
|
2019-01-25 16:40:36 +03:00
|
|
|
maven {
|
|
|
|
// Local Maven repo containing AARs with JSC library built for Android
|
|
|
|
url "$rootDir/../node_modules/jsc-android/dist"
|
|
|
|
}
|
2018-07-20 15:57:12 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-12-10 12:12:04 +03:00
|
|
|
subprojects {project ->
|
2018-12-10 12:34:44 +03:00
|
|
|
if (project.name.contains('react-native-fast-image')|| project.name.contains('realm')) {
|
2018-12-10 12:12:04 +03:00
|
|
|
buildscript {
|
|
|
|
repositories {
|
|
|
|
maven { url "https://dl.bintray.com/android/android-tools/" }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-12-17 15:34:00 +03:00
|
|
|
ext {
|
|
|
|
def npmVersion = getNpmVersionArray()
|
|
|
|
versionMajor = npmVersion[0]
|
|
|
|
versionMinor = npmVersion[1]
|
|
|
|
versionPatch = npmVersion[2]
|
|
|
|
}
|
2018-12-10 12:12:04 +03:00
|
|
|
}
|