DevControl/build.gradle

21 lines
481 B
Groovy
Raw Normal View History

2022-10-13 09:19:55 +08:00
// Top-level build file where you can add configuration options common to all sub-projects/modules.
2022-10-24 14:08:07 +08:00
buildscript {
repositories {
jcenter()
google()
mavenCentral()
}
dependencies {
classpath 'org.greenrobot:greendao-gradle-plugin:3.3.0'
}
}
2022-10-13 09:19:55 +08:00
plugins {
id 'com.android.application' version '7.1.3' apply false
id 'com.android.library' version '7.1.3' apply false
}
task clean(type: Delete) {
delete rootProject.buildDir
}