// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
jcenter()
google()
maven{
url "https://dl.bintray.com/qihoo360/replugin"
}
}
dependencies {
classpath 'com.android.tools.build:gradle:3.1.0'
classpath "com.qihoo360.replugin:replugin-host-gradle:2.3.1"
}
}
allprojects {
repositories {
// jcenter()
flatDir {
dirs project(':ipu-mobile-common').file('libs')
}
google()
maven { url 'https://jitpack.io' }
}
}
|