ecency-mobile/android/build.gradle

42 lines
1.0 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-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-08-14 20:15:54 +03:00
task wrapper(type: Wrapper) {
gradleVersion = '4.4'
distributionUrl = distributionUrl.replace("bin", "all")
}