Files
AndroidBaseFrameMVVM/build.gradle

25 lines
472 B
Groovy
Raw Normal View History

import com.quyunshuo.androidbaseframemvvm.build.*
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
2020-08-26 17:29:44 +08:00
}
}
allprojects {
repositories {
google()
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}