-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.gradle
61 lines (57 loc) · 1.64 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
buildscript {
ext {
compile_sdk_version = 28
min_sdk_version = 21
target_sdk_version = 28
version_code = 1
version_name = "1.0"
application_id = "com.wojdor.hearthstonecards"
kotlin_version = '1.3.21'
anko_version = '0.10.5'
appcompat_version = '1.0.2'
gradle_version = '3.3.0'
fabric_version = '1.25.4'
google_services_version = '4.2.0'
android_support_version = '1.0.0'
constraint_layout_version = '1.1.3'
room_version = '2.0.0-rc01'
lifecycle_version = '2.0.0-rc01'
crashlytics_version = '2.9.8'
firebase_core_version = '16.0.6'
rx_kotlin_version = '2.3.0'
rx_android_version = '2.1.0'
koin_version = '1.0.2'
timber_version = '4.7.1'
retrofit_version = '2.4.0'
picasso_version = '2.71828'
lottie_version = '2.5.4'
junit_version = '4.12'
runner_version = '1.1.0'
espresso_version = '3.1.0'
}
repositories {
google()
jcenter()
maven {
url 'https://maven.fabric.io/public'
}
}
dependencies {
classpath "com.android.tools.build:gradle:$gradle_version"
classpath "io.fabric.tools:gradle:$fabric_version"
classpath "com.google.gms:google-services:$google_services_version"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
allprojects {
repositories {
google()
jcenter()
maven {
url 'https://maven.google.com/'
}
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}