-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
81 lines (69 loc) · 2.09 KB
/
build.gradle
File metadata and controls
81 lines (69 loc) · 2.09 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
mavenCentral()
maven { url = "https://plugins.gradle.org/m2/" }
maven { url = 'https://maven.google.com/' }
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:8.13.2'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:2.2.20"
classpath "com.google.gms:google-services:4.4.4"
classpath "com.google.firebase:firebase-plugins:2.0.0"
classpath "org.jacoco:org.jacoco.core:0.8.14"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
plugins {
alias(libs.plugins.compose.compiler) apply false
}
allprojects {
repositories {
mavenCentral()
maven { url = "https://plugins.gradle.org/m2/" }
maven { url = 'https://maven.google.com/' }
google()
}
}
tasks.register('clean', Delete) {
delete rootProject.buildDir
}
tasks.register('cleanAndroidMock', Delete) {
description = 'Deletes the mockable Android jar'
delete fileTree("${project.buildDir}/generated") {
include 'mockable-android*.jar'
}
}
ext {
// Test Versions (Modern and OK)
androidXTestVersion = "1.7.0"
espressoVersion = "3.7.0"
jUnit = "4.13.2"
jUnitExt = "1.3.0"
testRunner = "1.7.0"
testRules = "1.7.0"
truthVersion = "1.7.0"
// Core Versions
composeVersion = "1.7.8"
constraintLayout = "2.2.1"
firebaseBom = "33.1.0"
gradleVersion = "8.13.0"
kotlinVersion = "2.2.20"
lifecycleViewmodel = "2.9.4"
materialVersion = "1.13.0"
jacocoVersion = "0.8.14"
// Dependency Versions
glideVersion = "5.0.5"
gsonVersion = "2.13.2"
ktxCoroutinesCore = "1.8.1"
ktxCoroutinesTest = "1.7.3"
// Mocking/Network
mockWebServer = "5.2.1"
okhttp3LoggingInterceptor = "5.2.1"
mockkVersion = "1.13.5"
mockitoVersion = "5.20.0"
mockitoInlineVersion = "5.2.0"
mockitoKotlinVersion = "6.1.0"
}