-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbuild.gradle
47 lines (41 loc) · 1.24 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.kotlin_version = "1.4.10"
repositories {
google()
jcenter()
}
dependencies {
classpath "com.android.tools.build:gradle:4.0.2"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath 'com.google.gms:google-services:4.3.4'
classpath 'com.google.firebase:firebase-crashlytics-gradle:2.4.1'
}
ext{
keyalias = '06:9B:3F:01:07:95:56:D1:C8:00:EE:C5:D2:21:D3:71:AF:0A:E4:4E'
keypassword = 'android'
storePassword = 'android'
psvVersion = '1.1.2'
lifecycleVersion = '2.3.0-beta01'
roomVersion = "2.2.5"
kodeinVersion6 = '7.1.0'
moshiVersion= '1.11.0'
retrofitVersion = '2.9.0'
retrofitCoroutinesVersion = "1.1.0"
retrofitLogginVersion = '3.0.0'
glideVersion = '4.11.0'
coroutinesManagerVersion = "1.1.3"
smartAdapterVersion='4.1.0'
easyPay = '0.02'
}
}
allprojects {
repositories {
google()
jcenter()
maven { url 'https://jitpack.io' }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}