| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- // Top-level build file where you can add configuration options common to all sub-projects/modules.
- buildscript {
- repositories {
- jcenter()
- mavenCentral()
- }
- dependencies {
- //classpath "com.android.tools.build:gradle:$localGradlePluginVersion"
- //$localGradlePluginVersion是gradle.properties中的数据
- classpath "com.android.tools.build:gradle:$localGradlePluginVersion"
- classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8'
- }
- }
- allprojects {
- repositories {
- jcenter()
- mavenCentral()
- //Add the JitPack repository
- maven { url "https://jitpack.io" }
- //支持arr包
- flatDir {
- dirs 'libs'
- }
- }
- }
- task clean(type: Delete) {
- delete rootProject.buildDir
- }
- // Define versions in a single place
- ext {
- // Sdk and tools
- //localBuildToolsVersion是gradle.properties中的数据
- buildToolsVersion = localBuildToolsVersion
- compileSdkVersion = 25
- minSdkVersion = 15
- targetSdkVersion = 25
- versionCode = 1
- versionName = "1.0"
- javaVersion = JavaVersion.VERSION_1_8
- // App dependencies version
- supportLibraryVersion = "25.3.0"
- retrofitVersion = "2.1.0"
- glideVersion = "3.7.0"
- loggerVersion = "1.15"
- eventbusVersion = "3.0.0"
- gsonVersion = "2.8.0"
- //不成熟开源库,需经常检查升级版本
- aptCompilerVersion = "1.1.7"
- routerVersion = "1.2.2"
- easyRecyclerVersion = "4.4.0"
- cookieVersion = "v1.0.1"
- }
|