-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild.gradle
66 lines (62 loc) · 2.08 KB
/
build.gradle
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.kotlin_version = '1.2.71'
ext.versionCode = 101
ext.versionName = "1.0.1"
ext.supportLibVersion = "28.0.0"
ext.greenDaoSchemaVersion = 22
ext.googleLibVersion = "15.0.1"
ext.compileSdkVersion = 28
ext.buildToolsVersion = "28.0.1"
ext.targetSdkVersion = 28
ext.minSdkVersion = 17
ext.applicationId = "com.zest.android"
ext.testInstrumentationRunner = "android.support.test.runner.AndroidJUnitRunner"
ext.junitVersion = "4.12"
ext.calligraphyLibVersion = "2.3.0"
ext.multidexLibVersion = "1.0.3"
ext.retrofitLibVersion = "2.3.0"
ext.gsonLibVersion = "2.7"
ext.greendaoLibVersion = "3.2.2"
ext.parcelerLibVersion = "1.1.9"
ext.crashlyticsLibVersion = "2.6.8@aar"
ext.okhttpLibVersion = "3.8.1"
ext.butterknifeLibVersion = "8.8.1"
ext.picassoVersion = "2.5.2"
ext.debugDbVersion = "1.0.3"
ext.chipCloudLibVersion = "2.2.1"
ext.retrofitLibVersion = "2.4.0"
ext.roomCompilerLibVersion = "1.1.1"
ext.rxjavaLibVersion ="2.2.0"
ext.rxandroidLibVersion="2.1.0"
repositories {
jcenter()
mavenCentral()
maven { url 'https://maven.fabric.io/public' }
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.2.1'
classpath 'com.google.gms:google-services:4.0.1'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
classpath 'org.greenrobot:greendao-gradle-plugin:3.2.2'
classpath 'io.fabric.tools:gradle:1.26.1'
}
}
allprojects {
repositories {
jcenter()
flatDir {
dirs 'libs'
}
google()
maven { url "https://jitpack.io" }
maven { url 'https://maven.google.com' }
maven { url 'https://maven.fabric.io/public' }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}