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 {
|
|
|
|
jcenter()
|
|
|
|
}
|
|
|
|
dependencies {
|
2017-01-22 15:05:15 +00:00
|
|
|
classpath 'com.android.tools.build:gradle:2.2.0'
|
2017-08-30 09:34:30 +00:00
|
|
|
classpath 'com.google.gms:google-services:3.0.0'
|
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" }
|
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" }
|
2016-02-22 22:04:42 +00:00
|
|
|
}
|
|
|
|
}
|