1
0
Fork 0
phizclip-flutter-demo/android/build.gradle

30 lines
470 B
Dart
Raw Normal View History

2020-02-27 17:33:10 +08:00
buildscript {
repositories {
google()
jcenter()
}
dependencies {
2020-02-28 13:08:54 +08:00
classpath 'com.android.tools.build:gradle:3.4.0'
2020-02-27 17:33:10 +08:00
}
}
allprojects {
repositories {
google()
jcenter()
}
}
rootProject.buildDir = '../build'
subprojects {
project.buildDir = "${rootProject.buildDir}/${project.name}"
}
subprojects {
project.evaluationDependsOn(':app')
}
task clean(type: Delete) {
delete rootProject.buildDir
}