-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathbuild.gradle
More file actions
106 lines (88 loc) · 3.24 KB
/
build.gradle
File metadata and controls
106 lines (88 loc) · 3.24 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
import org.jetbrains.kotlin.gradle.dsl.KotlinAndroidProjectExtension
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
androidGradlePluginVersion = '8.13.2'
kotlinVersion = '2.1.20'
kspVersion = '2.1.20-1.0.32'
dokkaVersion = '1.9.20'
androidxNavigationVersion = '2.9.6'
secretsVaultPluginVersion = '0.1.3'
nexusPublishPluginVersion = '2.0.0'
}
dependencies {
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:$androidxNavigationVersion"
}
}
plugins {
id 'com.android.application' version "$androidGradlePluginVersion" apply false
id 'com.android.library' version "$androidGradlePluginVersion" apply false
id 'org.jetbrains.kotlin.android' version "$kotlinVersion" apply false
id 'org.jetbrains.kotlin.plugin.compose' version "$kotlinVersion" apply false
id 'org.jetbrains.dokka' version "$dokkaVersion" apply true
id 'com.google.devtools.ksp' version "$kspVersion" apply false
id 'com.commencis.secretsvaultplugin' version "$secretsVaultPluginVersion" apply false
id 'io.github.gradle-nexus.publish-plugin' version "$nexusPublishPluginVersion" apply true
}
tasks.dokkaHtmlMultiModule.configure {
outputDirectory.set(file("dokka"))
}
subprojects {
afterEvaluate { project ->
project.plugins.withId('org.jetbrains.kotlin.android') {
project.extensions.configure(KotlinAndroidProjectExtension) { ext ->
ext.compilerOptions {
freeCompilerArgs.add("-Xconsistent-data-class-copy-visibility")
}
}
}
}
}
ext {
minSdkVersion = 21
netceteraMinSdkVersion = 24
targetSdkVersion = 36
compileSdkVersion = 36
ndkVersion = '28.2.13676358'
cmakeVersion = '3.31.6'
publishGroupId = 'com.processout'
publishVersion = file('version.resolved').getText().trim()
kotlinxCoroutinesVersion = '1.10.2'
androidxCoreVersion = '1.16.0'
androidxAppCompatVersion = '1.7.1'
androidxConstraintLayoutVersion = '2.2.1'
androidxActivityVersion = '1.10.1'
androidxFragmentVersion = '1.8.9'
androidxLifecycleVersion = '2.9.4'
androidxRecyclerViewVersion = '1.4.0'
androidxSwipeRefreshLayoutVersion = '1.1.0'
androidxBrowserVersion = '1.8.0'
androidxCameraVersion = '1.4.2'
androidxComposeBOMVersion = '2025.11.01'
composeGooglePayButtonVersion = '1.1.0'
materialVersion = '1.12.0'
gmsWalletVersion = '19.4.0'
mlkitTextRecognitionVersion = '19.0.1'
retrofitVersion = '2.12.0'
moshiVersion = '1.15.2'
okhttpVersion = '4.12.0'
okioVersion = '3.10.2'
coilVersion = '2.7.0'
commonMarkVersion = '0.27.0'
libphonenumberVersion = '9.0.19'
zxingVersion = '3.5.4'
jjwtVersion = '0.13.0'
slf4jVersion = '1.7.36'
netcetera3dsSdkVersion = '2.6.0.0'
checkout3dsSdkVersion = '3.2.7'
junitVersion = '4.13.2'
mockitoVersion = '5.20.0'
mockitoInlineVersion = '5.2.0'
mockitoKotlinVersion = '6.1.0'
robolectricVersion = '4.16'
androidxTestCoreVersion = '1.7.0'
// Legacy
volleyVersion = '1.2.1'
gsonVersion = '2.13.2'
}
apply from: "${rootDir}/scripts/publish-root.gradle"