2021-04-24 18:12:23 +08:00
|
|
|
import com.quyunshuo.androidbaseframemvvm.buildsrc.*
|
2020-08-27 00:46:09 +08:00
|
|
|
|
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
|
2021-03-15 17:28:18 +08:00
|
|
|
classpath ProjectPluginManager.ARouterRegister
|
2021-05-25 17:47:55 +08:00
|
|
|
classpath ProjectPluginManager.HiltPlugin
|
2020-08-26 17:29:44 +08:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
|
repositories {
|
|
|
|
|
google()
|
|
|
|
|
jcenter()
|
2021-05-25 17:47:55 +08:00
|
|
|
mavenCentral()
|
2020-08-26 17:29:44 +08:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
task clean(type: Delete) {
|
|
|
|
|
delete rootProject.buildDir
|
|
|
|
|
}
|