forked from duckduckgo/Android
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
188 lines (169 loc) · 7.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
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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
// Top-level build file where you can add configuration options common to all sub-projects/modules.
import static de.fayard.refreshVersions.core.Versions.versionFor
buildscript {
ext {
min_sdk = 26
target_sdk = 34
compile_sdk = 34
// Calculate lint_version (must always be gradle_plugin + 23)
def gradle_plugin_version = versionFor(project, Android.tools.build.gradlePlugin)
def components = gradle_plugin_version.split('\\.')
lint_version = gradle_plugin_version.replaceFirst(components[0], (components[0].toInteger() + 23).toString())
}
repositories {
google()
mavenCentral()
maven { url "https://plugins.gradle.org/m2/" }
}
dependencies {
classpath(Android.tools.build.gradlePlugin)
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
plugins {
id 'com.squareup.anvil' apply false
id 'org.jetbrains.dokka'
id 'com.osacky.fulladle'
id 'org.jetbrains.kotlin.android' apply false
id 'org.jmailen.kotlinter' apply false
id 'com.google.devtools.ksp' apply false
id 'com.diffplug.spotless' apply false
}
allprojects {
repositories {
google()
mavenCentral()
maven { url 'https://jitpack.io' }
}
configurations.all {
resolutionStrategy.force 'org.objenesis:objenesis:2.6'
}
}
subprojects {
if (project.name.endsWith("api")) {
apply plugin: 'org.jetbrains.dokka'
}
String[] allowAndroidTestsIn = ["app", "sync-lib", "httpsupgrade-impl"]
if (!allowAndroidTestsIn.contains(project.name)) {
project.projectDir.eachFile(groovy.io.FileType.DIRECTORIES) { File parent ->
if (parent.name == "src") {
parent.eachFile(groovy.io.FileType.DIRECTORIES) { child ->
if (child.name == "androidTest") {
throw new GradleException("Only the app module can have Android Tests. Perhaps you could use Robolectric?")
}
}
}
}
}
String[] allowStringsIn = ["app"]
if (!allowStringsIn.contains(project.name)) {
project.projectDir.eachDirRecurse { File parent ->
if (parent.name == "values") {
parent.eachFile(groovy.io.FileType.FILES) { child ->
if (child.name == "strings.xml") {
throw new GradleException("Duplicate strings.xml file found in $project. " +
"Only :app should contain the strings.xml file. " +
"Rename file to strings-<feature>.xml instead.")
}
}
}
}
}
def projectPath = path
configurations.configureEach {
if (name == "compileClasspath" || name.endsWith("CompileClasspath")) {
incoming.beforeResolve {
plugins.each { plugin ->
// API modules cannot use the anvil plugin
if (projectPath.endsWith("api")) {
if (plugin.toString().contains("com.squareup.anvil.plugin")) {
throw new GradleException("Invalid plugin $projectPath -> " +
"'api' modules can't use the anvil plugin")
}
}
if (!projectPath.endsWith(":app") && plugin.toString().toLowerCase().contains("kapt")) {
throw new GradleException("Invalid usage of kapt $projectPath -> " +
"Use ksp instead of kapt")
}
}
for (dependency in dependencies) {
// API modules cannot depend on dagger/anvil
if (projectPath.endsWith("api")
&& projectPath != ":feature-toggles-api"
&& projectPath != ":settings-api") {
def notAllowedDeps = ["anvil", "dagger"]
if (notAllowedDeps.contains(dependency.name)) {
throw new GradleException("Invalid dependency $projectPath -> " +
"'api' modules can't depend on dagger/anvil")
}
}
if (dependency instanceof ProjectDependency) {
def dependencyPath = dependency.dependencyProject.path
if (dependencyPath == projectPath) continue
// internal modules have to use internalImplementation
// when a non internal configuration is built (i.e. PlayDebug) no internal dependencies should be found
def internalExceptions = []
if (dependencyPath.endsWith('internal') && !internalExceptions.contains(dependencyPath) && !name.toLowerCase().contains("internal")) {
throw new GradleException("Invalid dependency $projectPath -> $dependencyPath. " +
"'internal' modules must use internalImplementation")
}
// internal modules can depend on impl
if (projectPath.endsWith('internal') && dependencyPath.endsWith('impl')) continue
if (!projectPath.endsWith(":app") && dependencyPath.endsWith("impl")) {
throw new GradleException("Invalid dependency $projectPath -> $dependencyPath. " +
"Only :app module can depend on 'impl' modules")
}
// API modules cannot depend on :di
if (projectPath.endsWith("api") && dependencyPath == ":di") {
throw new GradleException("Invalid dependency $projectPath -> $dependencyPath. " +
"'api' modules can't depend on the 'di' module")
}
// API modules can depend on :feature-toggles-api
if (projectPath.endsWith("api")
&& dependencyPath.endsWith("api")
&& dependencyPath != ":feature-toggles-api"
&& dependencyPath != ":navigation-api"
) {
if (projectPath.endsWith(":feature-toggles-api") && dependencyPath == ":experiments-api") {
// noop
} else {
throw new GradleException("Invalid dependency $projectPath -> $dependencyPath. " +
"'api' modules can't depend on other 'api' modules")
}
}
if (dependencyPath.endsWith(":app")) {
throw new GradleException("Invalid dependency $projectPath -> $dependencyPath. " +
"No other module can depend on ':app'")
}
}
}
}
}
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
fladle {
configs {
serviceAccountCredentials.set(project.layout.projectDirectory.file("flank.json"))
androidTests {
async.set(false)
flankVersion.set("21.+")
testShards.set(2)
useOrchestrator.set(false)
recordVideo.set(false)
testTargets.set([
"notAnnotation com.duckduckgo.espresso.PrivacyTest",
"notAnnotation com.duckduckgo.espresso.UserJourney",
])
devices.set([
["model": "Pixel3", "version": "30"],
["model": "Pixel2.arm", "version": "28"]
])
localResultsDir.set("fladleResults")
}
}
}
apply plugin: 'android-reporting'