BlueWallet/android/build.gradle

41 lines
1 KiB
Groovy
Raw Normal View History

// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
2019-04-01 00:58:35 -04:00
buildToolsVersion = "28.0.3"
minSdkVersion = 16
compileSdkVersion = 28
2019-07-12 23:34:06 +01:00
targetSdkVersion = 28
supportLibVersion = "28.0.0"
2019-07-18 17:38:07 +01:00
googlePlayServicesVersion = "16.+"
firebaseVersion = "17.3.4"
}
repositories {
google()
jcenter()
}
dependencies {
2019-07-12 23:34:06 +01:00
classpath("com.android.tools.build:gradle:3.4.1")
// 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-07-12 23:34:06 +01:00
url("$rootDir/../node_modules/react-native/android")
}
maven {
// Android JSC is installed from npm
url("$rootDir/../node_modules/jsc-android/dist")
}
2019-07-12 23:34:06 +01:00
google()
jcenter()
}
}