ecency-mobile/android/build.gradle

53 lines
1.4 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.
buildscript {
ext {
buildToolsVersion = "27.0.3"
minSdkVersion = 16
compileSdkVersion = 27
targetSdkVersion = 26
supportLibVersion = "27.1.1"
}
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 {
classpath 'com.android.tools.build:gradle:3.1.4'
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
}
}
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"
}
maven { url 'https://maven.google.com' }
maven { url "https://jitpack.io" }
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-08-14 20:15:54 +03:00
task wrapper(type: Wrapper) {
gradleVersion = '4.4'
distributionUrl = distributionUrl.replace("bin", "all")
}