-
Notifications
You must be signed in to change notification settings - Fork 48
Expand file tree
/
Copy pathversions.gradle
More file actions
114 lines (105 loc) · 3.39 KB
/
versions.gradle
File metadata and controls
114 lines (105 loc) · 3.39 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
// Variables for entire project
// Taken from android-complete.
ext {
// SDK
minSdkVersion = 21
brokerProjectMinSdkVersion = 24
automationAppMinSDKVersion = 21
targetSdkVersion = 33
compileSdkVersion = 34
buildToolsVersion = "28.0.3"
// Plugins
gradleVersion = '8.1.1'
kotlinVersion = '1.7.21'
spotBugsGradlePluginVersion = '4.7.1'
jupiterApiVersion = '5.6.0'
//Java Language Support
coreLibraryDesugaringVersion = "1.1.5"
// Libraries
androidxTestRunnerVersion = "1.4.0"
androidxTestOrchestratorVersion = "1.4.1"
androidxTestMonitorVersion = "1.4.0"
androidxTestCoreVersion = "1.5.0"
androidxJunitVersion = "1.1.3"
annotationVersion = "1.0.0"
androidxCoreVersion = "1.5.0"
appCompatVersion = "1.1.0"
browserVersion = "1.0.0"
constraintLayoutVersion = "1.1.3"
dexmakerMockitoVersion = "2.19.0"
espressoCoreVersion = "3.1.0"
gsonVersion = "2.8.9"
junitVersion = "4.13.2"
legacySupportV4Version = "1.0.0"
localBroadcastManagerVersion = "1.0.0"
lombokVersion = "1.18.22"
materialVersion = "1.0.0"
mockitoCoreVersion = "3.6.28"
mockitoAndroidVersion = "3.6.28"
multidexVersion = "2.0.1"
nimbusVersion = "9.37.3"
powerMockVersion = "2.0.9"
runnerVersion = "1.2.0"
rulesVersion = "1.2.0"
robolectricVersion = "4.11.1"
uiAutomatorVersion = "2.2.0"
daggerVersion = "2.31.2"
daggerCompilerVersion = "2.31.2"
msal4jVersion = "1.20.1"
moshiVersion = "1.14.0"
moshiAdaptersVersion = "1.14.0"
openpojoVersion = "0.9.1"
equalsVerifierVersion = "3.6.1"
jsonGeneratorVersion = "0.4.7"
jsonSchemaFriendVersion = "0.12.2"
jsonVersion = "20231013"
jsonAssertVersion = "1.5.1"
junitJupiterEngineVersion = "5.7.2"
junitVintageEngineVersion = "5.7.2"
dbusJavaVersion = "3.3.0"
dbusJavaUtilsVersion = "3.3.0"
bouncyCastleVersion = "1.78"
oshiCoreVersion = "5.7.5"
tokenShare = "1.6.5"
intuneAppSdkVersion = "8.6.3"
javaAssistVersion = "3.27.0-GA"
yubikitAndroidVersion = "2.5.0"
yubikitPivVersion = "2.5.0"
powerliftAndroidVersion="1.0.3"
kotlinXCoroutinesVersion = "1.6.4"
mockkVersion = "1.11.0"
mockitoKotlinVersion = "4.1.0"
androidxAnnotationVersion = "1.4.0"
spotBugsAnnotationVersion = "4.3.0"
jcipAnnotationVersion = "1.0-1"
openTelemetryVersion = "1.18.0"
jetpackDataStoreVersion = "1.0.0"
blockstoreVersion="16.2.0"
lifecycleKtxVersion="2.5.1"
AndroidCredentialsVersion="1.2.2"
LegacyFidoApiVersion="20.1.0"
GoogleIdVersion="1.1.0"
// microsoft-diagnostics-uploader app versions
powerliftVersion = "0.14.7"
cliktVersion = "3.4.2"
okhttp3Version = "4.9.3"
// TODO: adal automation test app.
supportLibraryVersion = "27.1.+"
adalLegacy = "1.15.0"
adalSnapshot = "3.1.1-SNAPSHOT"
adalLatest = "3.1.1"
//#### The following are TSL version variables - BEGIN
projectCompileSdkVersion = 29
projectBuildToolsVersion = '28.0.3'
projectMinSdkVersion = 14
projectTargetSdkVersion = 29
projectVersionCode = 1
projectVersionName = "1.5.9"
junitLibraryVersion = "4.12"
androidSupportLibraryVersion = "28.0.0"
gsonLibraryVersion = "2.8.0"
supportTestLibraryVersion = "0.4.1"
mockitoLibraryVersion = "1.2"
dexMakerLibraryVersion = "1.2"
//#### The ABOVE are TSL version variables - END
}