1234567891011121314151617181920212223242526272829303132333435 |
- // 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.0'
- // 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"
- }
- }
- 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
- }
|