-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
69 lines (63 loc) · 2.2 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 {
kotlinVersion = '1.3.71'
gradleVersion = '3.6.3'
compileSdkVersion = 29
minSdkVersion = 21
targetSdkVersion = 29
buildToolsVersion = "29.0.2"
versions = [
nav : '2.2.2',
lifecycle : "2.2.0",
appcompat : "1.2.0-beta01",
material : "1.2.0-alpha06",
koin : "2.0.1",
coroutines : '1.1.1',
room : '2.2.5',
rxjava : '2.2.15',
rxandroid : '2.1.1',
super_csv : '2.4.0',
fabric : '1.31.2',
google_service: '4.3.3',
lottie : '3.3.0',
libPhonenumber: '8.10.1'
]
}
repositories {
google()
jcenter()
maven { url 'https://dl.bintray.com/kotlin/kotlin-dev' }
maven { url 'https://dl.bintray.com/kotlin/kotlin-eap' }
maven {
url 'https://maven.fabric.io/public'
}
}
dependencies {
classpath "com.android.tools.build:gradle:$gradleVersion"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
classpath "com.google.gms:google-services:$versions.google_service"
classpath "io.fabric.tools:gradle:$versions.fabric"
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:$versions.nav"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
jcenter()
mavenCentral()
maven { url 'https://dl.bintray.com/kotlin/kotlin-dev' }
maven { url 'https://dl.bintray.com/kotlin/kotlin-eap' }
maven { url 'http://dl.bintray.com/amulyakhare/maven' }
maven { url 'https://jitpack.io' }
maven {
url 'http://www.idescout.com/maven/repo/'
name 'IDEScout, Inc.'
}
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}