12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- // Top-level build file where you can add configuration options common to all sub-projects/modules.
- apply from: "config.gradle"
- buildscript {
- repositories {
- maven {
- url "https://maven.google.com"
- }
- google()
- maven { url 'http://maven.aliyun.com/nexus/content/groups/public/' }
- maven { url 'https://oss.sonatype.org/content/repositories/snapshots' }
- jcenter()
- }
- dependencies {
- classpath 'com.android.tools.build:gradle:3.2.0'
- // NOTE: Do not place your application dependencies here; they belong
- // in the individual module build.gradle files
- classpath 'com.jakewharton:butterknife-gradle-plugin:9.0.0'
- }
- }
- allprojects {
- repositories {
- google()
- maven {
- url "https://maven.google.com"
- }
- maven{
- url "https://dl.bintray.com/tencentqcloudterminal/maven"
- }
- maven { url "https://oss.sonatype.org/content/repositories/snapshots" }
- maven { url "https://jitpack.io" }
- maven { url 'http://maven.aliyun.com/nexus/content/groups/public/' }
- jcenter()
- }
- }
- task clean(type: Delete) {
- delete rootProject.buildDir
- }
|