-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
constants.gradle
executable file
·81 lines (74 loc) · 1.87 KB
/
constants.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
80
81
/**
* Constants defined in the build scripts.
*/
project.ext {
namespace = "com.yuriy.openradio"
javaVersion = JavaVersion.VERSION_1_8
/**
* Build and compile constants
*/
compileSdkVersion = 34
minSdkVersion = 17
minSdkVersionTv = 21
minSdkVersionAutomotive = 28
targetSdkVersion = 34
/**
* Kotlin versions
*/
kotlinVersion = "1.9.10"
kotlinCoreKtx = "1.12.0"
kotlinActivityKtx = "1.8.1"
kotlinxCoroutinesCore = "1.3.8"
kotlinxCoroutinesAndroid = "1.7.2"
kotlinJvmTarget = "1.8"
/**
* Libraries versions
*/
gradleVersion = "8.1.2"
appcompatVersion = "1.3.1"
materialVersion = "1.10.0"
googleServices = "4.4.0"
googlePlayServicesLocationVersion = "21.0.1"
constraintLayoutVersion = "1.1.3"
multidexVersion = "1.0.3"
leanbackVersion = "1.0.0"
jdom2Version = "2.0.6"
countryboundariesVersion = "2.1"
androidxMediaVersion = "1.6.0"
fragmentKtxVersion = "1.6.2"
roomVersion = "2.6.0"
exifinterfaceVersion = "1.3.6"
constraintlayoutAndroidXVersion = "2.1.4"
preferenceKtxVersion = "1.2.1"
workVersion = "2.8.1"
media3Version = "1.2.0"
// Seems like this is max version that supports Android 17
okhttp3Version = "3.12.13"
/**
* Test Libraries versions
*/
// https://mvnrepository.com/artifact/org.json/json
jsonTestVersion = "20230618"
junitVersion = "4.13.2"
junitAndroidXVersion = "1.1.5"
espressoVersion = "3.1.0"
/**
* Application constants
*/
applicationId = "com.yuriy.openradio"
versionName = "14.1.1"
versionCode = 0
/**
* Firebase
*/
firebaseCrashlyticsGradle = "2.9.9"
// The last version support API 17.
firebaseBom = "28.4.2"
/**
* Sign
*/
storeFileProp = ""
aliasProp = ""
pwdProp = ""
storeFileProp = ""
}