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

buildscript {
    ext.kotlin_version = '1.3.72'
    repositories {
        maven {url 'https://maven.google.com'}
        maven { url 'https://jitpack.io' }
        maven { url 'http://git.baijiashilian.com/open-android/maven/raw/master/' }
        jcenter()
        mavenCentral()
        google()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.4.0'
//        classpath 'com.jakewharton:butterknife-gradle-plugin:10.1.0'
        classpath 'com.novoda:bintray-release:0.9'
        classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1'
    }
}

allprojects {
    repositories {
        maven {url 'https://maven.google.com'}
        maven { url 'https://jitpack.io' }
        maven { url 'http://git.baijiashilian.com/open-android/maven/raw/master/' }
        jcenter()
    }
}

task clean(type: Delete) {
    delete rootProject.buildDir
}