wjc
2023-03-28 a9d1161b1df96e7ddad566335989a1444e433ef5
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
buildscript {
    repositories {
        google()
        mavenCentral()
        maven {
            url "https://jitpack.io"
        }
    }
    dependencies {
        classpath "com.android.tools.build:gradle:4.2.2"
    }
}
 
allprojects {
    repositories {
        google()
        mavenCentral()
        maven { url "https://jitpack.io" }
        maven { url = uri("https://plugins.gradle.org/m2/") }
 
    }
}
 
task clean(type: Delete) {
    delete rootProject.buildDir
}