123456789101112131415161718192021222324252627282930313233343536 |
- // Top-level build file where you can add configuration options common to all sub-projects/modules.
- buildscript {
- repositories {
- maven { url 'https://maven.aliyun.com/repository/public' }
- maven { url 'https://maven.aliyun.com/repository/google' }
- maven { url 'https://maven.aliyun.com/repository/jcenter' }
- maven { url 'https://jitpack.io' }
- mavenLocal()
- google()
- jcenter()
- }
- dependencies {
- classpath "com.android.tools.build:gradle:4.1.1"
- // classpath "com.android.tools.build:gradle:3.4.3"
- // NOTE: Do not place your application dependencies here; they belong
- classpath "com.github.kezong:fat-aar:1.3.8"
- classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.3.72"
- }
- }
- allprojects {
- repositories {
- maven { url 'https://maven.aliyun.com/repository/public' }
- maven { url 'https://maven.aliyun.com/repository/google' }
- maven { url 'https://maven.aliyun.com/repository/jcenter' }
- maven { url 'https://jitpack.io' }
- mavenLocal()
- google()
- jcenter()
- }
- }
- task clean(type: Delete) {
- delete rootProject.buildDir
- }
|