-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild.gradle
64 lines (62 loc) · 1.91 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
compose_version = '1.1.1'
}
ext.kotlin_version = "1.6.10"
ext.hilt_version = '2.39'
ext.google_services_version = '4.3.5'
ext.gradle_version = '7.0.4'
ext.crashlytics_gradle_version = '2.5.2'
ext.nav_version = "2.4.1"
repositories {
google()
jcenter()
}
dependencies {
classpath "com.android.tools.build:gradle:$gradle_version"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "com.google.dagger:hilt-android-gradle-plugin:$hilt_version"
classpath "com.google.gms:google-services:$google_services_version"
classpath "com.google.firebase:firebase-crashlytics-gradle:$crashlytics_gradle_version"
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:$nav_version"
}
}
allprojects {
repositories {
google()
jcenter()
}
}
ext{
firebaseBomVersion = '26.8.0'
glideVersion = '4.12.0'
xCryptoVersion = '1.1.0-alpha02'
targetSdkVersion = 31
minSdkVersion = 23
buildToolsVersion = "30.0.3"
majorVersion = 3//MAJOR version when you make incompatible API changes
minorVersion = 0 //MINOR version when you add functionality in a backwards compatible manner
patchVersion = 1 //PATCH version when you make backwards compatible bug fixes
versionCodeNum = 7
versionClassifier = null
isSnapshot = false
isAlpha = false
isBeta = false
alphaOrBetaVersion = 0
materialDialogsVersion = '3.3.0'
timberLoggerVersion = '4.7.1'
caverockVersion = 'androidsvg-aar:1.4'
retrofitVersion = '2.9.0'
okHttpVersion = '4.9.0'
gsonVersion = '2.8.7'
localhost_ip = "192.168.0.101:8080"
work_version = "2.6.0"
jwtDecode_version="2.0.0"
stethoVersion = "1.6.0"
leakCanaryVersion = "leakcanary-android:2.7"
threeTenAndroidBackportVersion = '1.3.1'
}
task clean(type: Delete) {
delete rootProject.buildDir
}