-
Notifications
You must be signed in to change notification settings - Fork 122
Expand file tree
/
Copy pathbuild.gradle
More file actions
34 lines (31 loc) · 953 Bytes
/
build.gradle
File metadata and controls
34 lines (31 loc) · 953 Bytes
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
plugins {
id 'com.android.application' apply false
id 'org.jetbrains.kotlin.android' apply false
id 'org.jetbrains.kotlin.jvm' apply false
id 'org.jetbrains.kotlin.kapt' apply false
}
ext {
jsonVersion = '20250517'
okioVersion = '3.6.0'
retrofitVersion = '3.0.0'
retrofitRxAdapterVersion = '3.0.0'
gsonConverterVersion = '3.0.0'
okhttpVersion = '4.12.0'
rxjavaVersion = '3.1.12'
rxAndroidVersion = '3.0.2'
daggerVersion = '2.58'
coreKtxVersion = '1.17.0'
appcompatVersion = '1.7.1'
espressoVersion = '3.7.0'
junitExtVersion = '1.3.0'
testRulesVersion = '1.6.1'
leakCanaryVersion = '2.14'
}
project.ext {
groupId = project.findProperty("group") ?: 'com.github.ihsanbal'
artifactId = project.findProperty("artifactId") ?: 'LoggingInterceptor'
snapshot = project.findProperty("version") ?: '3.1.0-rc2'
}
task clean(type: Delete) {
delete rootProject.buildDir
}