Skip to content
  • P
    Projects
  • G
    Groups
  • S
    Snippets
  • Help

android / dayu

  • This project
    • Loading...
  • Sign in
Go to a project
  • Project
  • Repository
  • Issues 0
  • Merge Requests 0
  • Pipelines
  • Wiki
  • Snippets
  • Members
  • Activity
  • Graph
  • Charts
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Branches
  • Tags
  • Contributors
  • Graph
  • Compare
  • Charts
Switch branch/tag
  • dayu
  • build.gradle
Find file
BlameHistoryPermalink
  • mReturn's avatar
    工单优化 · 3e0b61f3
    mReturn committed 5 years ago
    3e0b61f3
build.gradle 1.31 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {
    ext.compile_sdk_version = 27
    ext.build_tools_version = "27.0.3"
    ext.min_sdk_version = 16
    ext.target_sdk_version = 26
    ext.version_code = 240
    ext.verson_name = "dev_2.4.0"
    ext.gradle_version = '3.1.4'
    ext.isReleaseMinify = true
    ext.isDebugMinify = false
    ext.arouter_api_version = '1.3.1'
    ext.arouter_compiler_version = '1.1.4'
//    ext.kotlin_version = '1.2.50'

    repositories {
//        jcenter()
//        google()
        maven { url 'https://jitpack.io' }
        maven {
            url 'https://maven.google.com'
        }
        maven{ url 'http://maven.aliyun.com/nexus/content/groups/public/'}
    }
    dependencies {
        classpath "com.android.tools.build:gradle:$gradle_version"
        classpath 'org.greenrobot:greendao-gradle-plugin:3.2.0'
//        classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
    }
}

allprojects {
    repositories {
//        jcenter()
//        google()
        mavenCentral()
        maven { url 'https://jitpack.io' }
        maven { url 'https://maven.google.com' }
        maven{ url 'http://maven.aliyun.com/nexus/content/groups/public/'}
    }
}

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