Files
AndroidBaseFrameMVVM/build.gradle

28 lines
603 B
Groovy
Raw Normal View History

2021-04-24 18:12:23 +08:00
import com.quyunshuo.androidbaseframemvvm.buildsrc.*
2020-08-26 17:29:44 +08:00
buildscript {
repositories {
google()
jcenter()
mavenCentral()
maven { url 'https://maven.google.com' }
2020-08-26 17:29:44 +08:00
}
dependencies {
classpath ProjectPluginManager.AndroidToolsPlugin
classpath ProjectPluginManager.KotlinPlugin
classpath ProjectPluginManager.ARouterRegister
classpath ProjectPluginManager.HiltPlugin
2020-08-26 17:29:44 +08:00
}
}
allprojects {
repositories {
google()
jcenter()
mavenCentral()
2020-08-26 17:29:44 +08:00
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}