-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
69 lines (56 loc) · 1.41 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
// ID
id = 'com.pingo.tmdb'
// App version
versionCode = 1
versionName = '1.0.0'
// SDK and tools
minSdk = 21
targetSdk = 28
kotlin = '1.3.40'
appCompat = '1.1.0-beta01'
appCompatLegacy = '1.0.0'
androidktx = '1.2.0-alpha02'
material = '1.1.0-alpha07'
lifecycle = '2.2.0-alpha01'
// UI
constraintLayout = '2.0.0-beta2'
recyclerView = '1.1.0-alpha06'
flexbox = '1.1.0'
picasso = '2.71828'
// Data
retrofit = '2.6.0'
okhttp = '4.0.0'
moshi = '1.8.0'
coroutine = '1.0.1'
// Dependency Injection
dagger = '2.23.2'
// Testing
multidex = '2.0.1'
espresso = '3.3.0-alpha01'
javax = '10.0-b28'
junit = '4.13-beta-3'
testRunner = '1.3.0-alpha01'
mockito = '2.27.0'
mockitoKotlin = '2.1.0'
}
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.4.1'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin"
}
}
allprojects {
repositories {
google()
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}