This repository has been archived by the owner on May 6, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
/
build.gradle
79 lines (73 loc) · 2.57 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
apply from: 'gradle/deps.gradle'
apply from: 'gradle/test-deps.gradle'
buildscript {
ext {
kotlin_version = '1.3.50'
}
ext.versions = [
'compileSdk' : 29,
'minSdk' : 24,
'targetSdk' : 29,
'buildTools' : '29.0.0',
'appcompat' : '1.1.0-rc01',
'androidx' : '1.0.0',
'androidxArch' : '2.0.0',
'flipper' : '0.23.5',
'flipperSoVersion': '0.6.0',
'constraintLayout': '2.0.0-alpha2',
'coreKtx' : '1.0.0',
'coroutines' : '1.1.1',
'crashlytics' : '2.10.1',
'dagger' : '2.24',
'espresso' : '3.1.0-beta02',
'fabric' : '1.31.0',
'firebase' : '17.0.0',
'junit' : '4.12',
'kotlin' : '1.3.50',
'navigation' : '1.0.0',
'ktlint' : '0.24.0',
'lifecycle' : '2.1.0-alpha01',
'material' : '1.1.0-alpha09',
'mockito' : '2.23.0',
'mockito_kotlin' : '2.0.0-RC3',
'okhttp' : '3.10.0',
'retrofit' : '2.6.0',
'room' : '2.1.0',
'supportLibrary' : '28.0.0',
'viewPager2' : '1.0.0-beta02',
'googlePlayVision': '18.0.0',
'googlePlayMaps' : '17.0.0',
'qrGen' : '2.2.0',
'preference' : '1.1.0-rc01',
'crashlytics' : '2.10.1',
'gravitySnapHelper': '2.2.0'
]
repositories {
jcenter()
google()
maven {
url 'https://maven.fabric.io/public'
}
}
dependencies {
classpath 'com.android.tools.build:gradle:3.5.1'
classpath 'com.google.gms:google-services:4.3.2'
classpath "io.fabric.tools:gradle:${versions.fabric}"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:${versions.kotlin}"
classpath "org.jetbrains.kotlin:kotlin-android-extensions:${versions.kotlin}"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:${versions.kotlin}"
}
}
allprojects {
repositories {
maven { url "http://dl.bintray.com/populov/maven" }
jcenter()
mavenCentral()
google()
maven {
url "https://oss.sonatype.org/content/repositories/snapshots"
}
maven { url "https://jitpack.io" }
maven { url 'https://maven.google.com' }
}
}