| 123456789101112131415161718192021222324252627282930313233343536 |
- //buildscript {
- // ext.kotlin_version = '1.7.10'
- // repositories {
- // google()
- // mavenCentral()
- // }
- //
- // dependencies {
- // classpath 'com.android.tools.build:gradle:8.1.1'
- // classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
- // }
- //}
- //
- allprojects {
- repositories {
- maven { url 'https://maven.aliyun.com/repository/google' }
- maven { url 'https://maven.aliyun.com/repository/public' }
- maven { url 'https://maven.aliyun.com/repository/jcenter' }
- maven { url 'https://maven.aliyun.com/repository/gradle-plugin' }
- google()
- mavenCentral()
- maven { url 'https://mirrors.tuna.tsinghua.edu.cn/flutter/download.flutter.io' }
- }
- }
- rootProject.buildDir = '../build'
- subprojects {
- project.buildDir = "${rootProject.buildDir}/${project.name}"
- }
- subprojects {
- project.evaluationDependsOn(':app')
- }
- tasks.register("clean", Delete) {
- delete rootProject.buildDir
- }
|