| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 | // Top-level build file where you can add configuration options common to all sub-projects/modules.apply from: "config.gradle"buildscript {    ext.kotlin_version = "1.5.31"    ext.koin_version = "2.2.3"    repositories {        google()        mavenCentral()        maven { url 'https://maven.aliyun.com/repository/central' }        maven { url 'https://maven.aliyun.com/repository/gradle-plugin' }        maven { url 'https://maven.aliyun.com/repository/google' }        maven { url 'https://maven.aliyun.com/repository/public'} // central仓和jcenter仓的聚合仓        maven { url 'https://maven.aliyun.com/nexus/content/repositories/gradle-plugin' }        maven { url 'https://www.jitpack.io' }    }    dependencies {        classpath "com.android.tools.build:gradle:4.2.1"        classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.7.10'        def nav_version = "2.3.5"        classpath "androidx.navigation:navigation-safe-args-gradle-plugin:$nav_version"        // NOTE: Do not place your application dependencies here; they belong        // in the individual module build.gradle files        classpath "io.insert-koin:koin-gradle-plugin:$koin_version"        //多渠道打包walle        classpath 'com.meituan.android.walle:plugin:1.1.6'    }}allprojects {    repositories {        google()        mavenCentral()        maven { url 'https://maven.aliyun.com/repository/central' }        maven { url 'https://maven.aliyun.com/repository/gradle-plugin' }        maven { url 'https://maven.aliyun.com/repository/google' }        maven { url 'https://maven.aliyun.com/repository/public'} // central仓和jcenter仓的聚合仓        maven { url 'https://maven.aliyun.com/nexus/content/repositories/gradle-plugin' }        maven { url 'https://www.jitpack.io' }    }}task clean(type: Delete) {    delete rootProject.buildDir}ext {    liteavSdk="com.tencent.liteav:LiteAVSDK_Live:latest.release"    imSdk = "com.tencent.imsdk:imsdk-plus:7.1.3925"}
 |