// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {
    repositories {
        maven { url 'http://maven.leoao.com/nexus/content/repositories/releases/' }
        maven { url 'http://maven.leoao.com/nexus/content/repositories/snapshots/' }
        //听云maven库地址
        maven { url "http://nexus2.tingyun.com/nexus/content/repositories/snapshots/" }

        //切换到私有库
        maven { url 'http://maven.leoao.com/nexus/content/repositories/google/' }
        maven { url 'http://maven.leoao.com/nexus/content/repositories/aliyun-public/' }
        maven { url 'http://maven.leoao.com/nexus/content/repositories/jcenter/' }

        maven { url 'https://maven.aliyun.com/repository/google/' }
        maven { url 'https://maven.aliyun.com/repository/central/' }
        maven { url 'https://maven.aliyun.com/repository/jcenter/' }
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.3.0'

        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

allprojects {
    repositories {
        maven { url "http://maven.leoao.com/nexus/content/repositories/releases/" }
        maven { url "http://maven.leoao.com/nexus/content/repositories/snapshots/" }
        //听云maven库
        maven { url "http://nexus2.tingyun.com/nexus/content/repositories/snapshots/" }

        //切换到私有库
        maven { url 'http://maven.leoao.com/nexus/content/repositories/google/' }
        maven { url 'http://maven.leoao.com/nexus/content/repositories/aliyun-public/' }
        maven { url 'http://maven.leoao.com/nexus/content/repositories/jcenter/' }
        maven { url 'http://maven.leoao.com/nexus/content/repositories/aliyun-jitpack/' }

        maven { url 'https://maven.aliyun.com/repository/google/' }
        maven { url 'https://maven.aliyun.com/repository/central/' }
        maven { url 'https://maven.aliyun.com/repository/jcenter/' }
        mavenLocal()
        jcenter()
    }
}
