1
wxr
2022-01-11 5f82f0310a19cc6ee25ffadcff1e33f3ca2f7e44
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
buildscript {
    repositories {
        google()
        jcenter()
        mavenCentral()
        maven {
            url "https://jitpack.io"
        }
    }
    dependencies {
        classpath "com.android.tools.build:gradle:4.2.2"
        classpath 'com.kezong:fat-aar:1.2.16'
    }
}
 
allprojects {
    repositories {
        flatDir{
            dirs 'libs'
        }
        google()
        jcenter()
        mavenCentral()
        maven { url "https://jitpack.io" }
        maven { url = uri("https://plugins.gradle.org/m2/") }
 
    }
}
 
task clean(type: Delete) {
    delete rootProject.buildDir
}