123456789101112131415161718192021222324252627282930313233343536373839 |
- apply from: "config.gradle"
- buildscript {
- repositories {
- google()
- mavenCentral()
- maven { url 'https://jitpack.io' }
- maven {
- url "https://maven.aliyun.com/nexus/content/repositories/releases"
- }
- // maven { url 'http://maven.aliyun.com/nexus/content/groups/public/' }
- // 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://maven.aliyun.com/repository/central/' }
- }
- dependencies {
- classpath 'com.android.tools.build:gradle:4.2.0'
- classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.31"
- }
- }
- allprojects {
- repositories {
- google()
- mavenCentral()
- maven { url 'https://jitpack.io' }
- maven {
- url "https://maven.aliyun.com/nexus/content/repositories/releases"
- }
- maven { url 'https://maven.aliyun.com/repository/jcenter/' }
- }
- }
- task clean(type: Delete) {
- delete rootProject.buildDir
- }
|