2020-08-27 00:46:09 +08:00
|
|
|
import com.quyunshuo.androidbaseframemvvm.build.*
|
|
|
|
|
|
2020-08-26 17:29:44 +08:00
|
|
|
buildscript {
|
|
|
|
|
repositories {
|
|
|
|
|
google()
|
|
|
|
|
jcenter()
|
2020-08-27 00:46:09 +08:00
|
|
|
mavenCentral()
|
|
|
|
|
maven { url 'https://maven.google.com' }
|
2020-08-26 17:29:44 +08:00
|
|
|
}
|
|
|
|
|
dependencies {
|
2020-08-27 00:46:09 +08:00
|
|
|
classpath ProjectPluginManager.AndroidToolsPlugin
|
|
|
|
|
classpath ProjectPluginManager.KotlinPlugin
|
2020-08-26 17:29:44 +08:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
|
repositories {
|
|
|
|
|
google()
|
|
|
|
|
jcenter()
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
task clean(type: Delete) {
|
|
|
|
|
delete rootProject.buildDir
|
|
|
|
|
}
|