-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconstants.gradle
More file actions
executable file
·75 lines (69 loc) · 1.8 KB
/
Copy pathconstants.gradle
File metadata and controls
executable file
·75 lines (69 loc) · 1.8 KB
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
/**
* Constants defined in the build scripts.
*/
project.ext {
namespace = "app.coradio"
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.2"
kotlinxCoroutinesCore = "1.3.8"
kotlinxCoroutinesAndroid = "1.7.3"
kotlinJvmTarget = "1.8"
/**
* Libraries versions
*/
gradleVersion = "8.1.2"
appcompatVersion = "1.3.1"
materialVersion = "1.11.0"
googleServices = "4.4.0"
// Seems like this is max version that supports Android 17
googlePlayServicesLocationVersion = "21.0.1"
constraintLayoutVersion = "1.1.3"
multidexVersion = "1.0.3"
leanbackVersion = "1.0.0"
jdom2Version = "2.0.6"
// Seems like this is max version that supports Android 17
androidxMediaVersion = "1.6.0"
fragmentKtxVersion = "1.6.2"
roomVersion = "2.6.1"
exifinterfaceVersion = "1.3.7"
constraintlayoutAndroidXVersion = "2.1.4"
preferenceKtxVersion = "1.2.1"
workVersion = "2.9.0"
media3Version = "1.2.1"
// 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 = "app.coradio"
versionName = "15.0.0"
versionCode = 0
/**
* Sign
*/
storeFileProp = ""
aliasProp = ""
pwdProp = ""
storeFileProp = ""
}