status-react/android/build.gradle

55 lines
1.5 KiB
Groovy
Raw Normal View History

2016-02-22 22:04:42 +00:00
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
2019-03-04 12:38:41 +00:00
ext {
buildToolsVersion = "28.0.3"
minSdkVersion = 16
compileSdkVersion = 28
targetSdkVersion = 28
supportLibVersion = "28.0.0"
}
2016-02-22 22:04:42 +00:00
repositories {
flatDir { dirs "libs", "${rootDir}/app/libs" }
google()
2016-02-22 22:04:42 +00:00
jcenter()
}
dependencies {
2019-03-04 12:38:41 +00:00
classpath 'com.android.tools.build:gradle:3.3.2'
// google-services downgraded from 4.1.0 because of
// https://github.com/invertase/react-native-firebase/issues/766#issuecomment-365116012
classpath 'com.google.gms:google-services:4.0.1'
2018-06-28 10:50:17 +00:00
classpath 'de.undercouch:gradle-download-task:3.1.2'
2016-02-22 22:04:42 +00:00
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
2019-03-04 12:38:41 +00:00
subprojects {
afterEvaluate {
if (project.hasProperty("android")) {
android {
compileSdkVersion 28
buildToolsVersion "28.0.3"
defaultConfig {
targetSdkVersion 28
}
}
}
}
}
2016-02-22 22:04:42 +00:00
allprojects {
repositories {
mavenLocal()
google()
2016-02-22 22:04:42 +00:00
jcenter()
maven { url "$rootDir/../node_modules/react-native/android" }
// for geth, function, and status-go
flatDir { dirs "libs", "${System.env.STATUS_GO_LIBDIR}/android" }
maven { url "https://jitpack.io" }
2016-02-22 22:04:42 +00:00
}
2018-06-28 10:50:17 +00:00
}
2019-03-04 12:38:41 +00:00