-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
73 lines (68 loc) · 2.27 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
66
67
68
69
70
71
72
73
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
//Application
compileSdkVersion = 28
minSdkVersion = 21
targetSdkVersion = 28
versionName = '1.0'
versionCode = 1
//Library
kotlinVersion = '1.3.31'
coreKtxVersion = '1.0.1'
appcompatVersion = '1.0.2'
roomVersion = '2.1.0-alpha03'
lifecycleVersion = '2.0.0'
navigationVersion = '1.0.0-rc02'
workVersion = '1.0.0-rc02'
constraintlayoutVersion = '1.1.3'
designVersion = '1.1.0-alpha02'
glideVersion = '4.8.0'
glideTransformationsVersion = '4.0.0'
recyclerViewVersion = '1.0.0'
okhttpVersion = '3.12.0'
retrofitVersion = '2.5.0'
smartRefreshLayoutVerison = '1.1.0-andx-4'
moshiVersion = '1.8.0'
kotshiVersion = '1.0.6'
rxpermissionsVersion = '0.10.2'
daggerVersion = '2.21'
rxjavaVersion = '2.2.6'
rxkotlinVersion = '2.3.0'
BottomSheetMenuVersion = '3.0.1'
trayVersion = '0.12.0'
rxbindingVersion = '3.0.0-alpha2'
rxlifecycleVersion = '3.0.0'
spinKitVersion = '1.2.0'
multitypeVersion = '4.0.0-alpha2'
aboutVersion = '2.3.0-alpha1'
xlogVersion = '1.6.1'
immersionbarVersion = '2.3.3'
bouquetVersion = '1.3.1'
foregroundviewsVersion = '2.5.0'
}
repositories {
google()
jcenter()
maven { url 'http://dl.bintray.com/kotlin/kotlin-eap' }
}
dependencies {
classpath 'com.android.tools.build:gradle:3.4.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
classpath "android.arch.navigation:navigation-safe-args-gradle-plugin:$navigationVersion"
classpath "com.quanturium.bouquet:bouquet-plugin:$bouquetVersion"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
jcenter()
maven { url 'http://dl.bintray.com/kotlin/kotlin-eap' }
maven { url 'https://jitpack.io' }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}