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 {
|
|
|
|
repositories {
|
2017-12-28 18:53:18 +00:00
|
|
|
google()
|
2016-02-22 22:04:42 +00:00
|
|
|
jcenter()
|
|
|
|
}
|
|
|
|
dependencies {
|
2017-12-28 18:53:18 +00:00
|
|
|
classpath 'com.android.tools.build:gradle:3.0.1'
|
2018-08-23 01:54:29 +00:00
|
|
|
classpath 'com.google.gms:google-services:4.1.0'
|
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
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
repositories {
|
|
|
|
mavenLocal()
|
|
|
|
jcenter()
|
2016-08-01 10:29:10 +00:00
|
|
|
maven { url "$rootDir/../node_modules/react-native/android" }
|
2017-12-26 09:56:15 +00:00
|
|
|
maven { url "$rootDir/../modules/react-native-status/android/libs" }
|
2016-03-06 22:09:55 +00:00
|
|
|
// for geth
|
2016-08-01 10:29:10 +00:00
|
|
|
flatDir { dirs 'libs' }
|
2016-09-26 06:59:40 +00:00
|
|
|
maven { url "http://139.162.11.12:8081/artifactory/libs-release-local" }
|
2016-08-01 10:29:10 +00:00
|
|
|
maven { url "https://jitpack.io" }
|
2018-06-29 12:28:46 +00:00
|
|
|
google()
|
2016-02-22 22:04:42 +00:00
|
|
|
}
|
2018-06-28 10:50:17 +00:00
|
|
|
}
|