-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
84 lines (69 loc) · 2.25 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
74
75
76
77
78
79
80
81
82
83
84
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
appId = "fujikinaga.sample.admobsample"
targetSdk = 29
minSdk = 21
appVersionCode = 1
appVersionName = "1.0.0"
kotlinVersion = '1.3.61'
coroutinesVersion = "1.3.2"
androidGradlePluginVersion = "4.0.0-alpha04"
appcompatVersion = '1.1.0'
activityVersion = '1.1.0-rc02'
annotationVersion = '1.1.0'
recyclerViewVersion = '1.1.0'
constraintLayoutVersion = '1.1.3'
fragmentVersion = '1.2.0-rc02'
lifecycleVersion = "2.2.0-rc02"
archCoreVersion = "2.1.0"
coreKtxVersion = '1.2.0-rc01'
materialVersion = '1.2.0-alpha02'
navigationVersion = "2.2.0-rc02"
transitionVersion = "1.3.0-rc01"
firebaseCoreVersion = "17.2.1"
admobVersion = "18.3.0"
// network
okhttp3Version = '4.2.2'
retrofitVersion = "2.6.2"
jsr250ApiVersion = "1.0"
gsonVersion = '2.8.5'
// di
daggerVersion = '2.25.2'
// layout, view
groupieVersion = "2.7.0"
// utils
timberVersion = "4.7.1"
leakcanaryVersion = "2.0-beta-4"
// test
junitVersion = '4.13-beta-3'
atslRunnerVersion = "1.2.0-beta02"
espressoVersion = '3.3.0-alpha02'
spekVersion = '2.0.6'
mockkVersion = '1.9.3'
archCoreTestingVersion = '2.1.0'
assertjVersion = "3.13.2"
}
repositories {
google()
jcenter()
maven { url 'https://dl.bintray.com/kotlin/kotlin-eap' }
}
dependencies {
classpath "com.android.tools.build:gradle:$androidGradlePluginVersion"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:$navigationVersion"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
jcenter()
maven { url 'https://dl.bintray.com/kotlin/kotlin-eap' }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}