-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
56 lines (50 loc) · 1.93 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
gradleVersion = '7.4.2'
kotlinVersion = '1.8.0'
navigationVersion = '2.5.3'
// Sdk and tools
// Support library and architecture components support minSdk 14 and above.
minSdkVersion = 24
targetSdkVersion = 33
// App dependencies
appCompatVersion = '1.6.1'
archLifecycleVersion = '2.2.0'
archLifecycleKtxVersion = '2.6.1'
materialVersion = '1.8.0'
mockitoVersion = '5.2.0'
constraintVersion = '2.1.4'
dexMakerVersion = '2.28.3'
coroutinesVersion = '1.6.4'
roomVersion = '2.5.1'
koinVersion = '3.4.0'
truthVersion = '1.1.3'
junitVersion = '4.13.2'
androidXTestCoreVersion = '1.5.0'
robolectricVersion = '4.7.3'
androidXTestExtKotlinRunnerVersion = '1.1.5'
archTestingVersion = '2.2.0'
androidXTestRulesVersion = '1.5.0'
espressoVersion = '3.5.1'
swipeRefreshVersion = '1.1.0'
fragmentTestingVersion = '1.1.0-alpha07'
playServicesLocationVersion = '21.0.1'
playServicesMapsVersion = '18.1.0'
firebaseUiAuthVersion = '8.0.2'
firebaseAuthKtxVersion = '21.2.0'
}
repositories {
google()
mavenCentral()
}
dependencies {
classpath "com.android.tools.build:gradle:$gradleVersion"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:$navigationVersion"
classpath 'com.google.gms:google-services:4.3.15'
classpath "com.google.android.libraries.mapsplatform.secrets-gradle-plugin:secrets-gradle-plugin:2.0.1"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}