forked from material-components/material-components-android
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
238 lines (208 loc) · 7.72 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
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
buildscript {
ext.kotlinVersion = '1.3.50'
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:4.0.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
}
}
allprojects {
repositories {
google()
jcenter()
mavenLocal()
}
}
ext {
compileSdkVersion = 30
minSdkVersion = 14
targetSdkVersion = 29
androidXVersions = [
annotation : '1.0.1',
appCompat : '1.1.0',
cardView : '1.0.0',
constraintlayout : '2.0.1',
coordinatorlayout : '1.1.0',
core : '1.5.0',
experimental : '1.0.0',
fragment : '1.0.0',
lifecycle : '2.0.0',
recyclerView : '1.0.0',
recyclerViewSelection : '1.0.0',
transition : '1.2.0',
vectorDrawable : '1.1.0',
viewpager2 : '1.0.0',
dynamicanimation : '1.0.0',
]
testRunnerVersion = '1.1.0'
espressoVersion = '3.1.0'
mockitoCoreVersion = '2.25.0'
truthVersion = '0.45'
// Enforce the use of prebuilt dependencies in all sub-projects. This is
// required for the doclava dependency.
usePrebuilts = "true"
// Disable pre-dexing when gradle called with -PdisablePreDex;
preDexLibs = !project.hasProperty('disablePreDex')
mavenRepoUrl = (project.hasProperty('mavenRepoUrl')
? project.property('mavenRepoUrl') : '/tmp/myRepo/')
// Current version of the library (could be in-development/unreleased).
mdcLibraryVersion = '1.4.0-alpha02'
mdcLibraryPackage = "com.google.android.material"
mdcLibraryDir = "com/google/android/material"
}
task clean(type: Delete) {
delete rootProject.buildDir
}
private def getTransformedProjectPath(projectPath) {
def pathComponents = projectPath.tokenize('/')
def result = ''
def currentPath = ''
pathComponents.each { component ->
if (currentPath == '') {
currentPath += component
} else {
currentPath += '-' + component
}
result += ':' + currentPath
}
return result
}
/**
* Return the module dependency for the given compatibility library name.
*/
def compatibility(name) {
switch (name) {
case "annotation":
return "androidx.annotation:annotation:${androidXVersions.annotation}"
case "appcompat":
return "androidx.appcompat:appcompat:${androidXVersions.appCompat}"
case "cardview":
return "androidx.cardview:cardview:${androidXVersions.cardView}"
case "constraintlayout":
return "androidx.constraintlayout:constraintlayout:${androidXVersions.constraintlayout}"
case "coordinatorlayout":
return "androidx.coordinatorlayout:coordinatorlayout:${androidXVersions.coordinatorlayout}"
case "core":
return "androidx.core:core:${androidXVersions.core}"
case "dynamicanimation":
return "androidx.dynamicanimation:dynamicanimation:${androidXVersions.dynamicanimation}"
case "fragment":
return "androidx.fragment:fragment:${androidXVersions.fragment}"
case "lifecycleRuntime":
return "androidx.lifecycle:lifecycle-runtime:${androidXVersions.lifecycle}"
case "recyclerview":
return "androidx.recyclerview:recyclerview:${androidXVersions.recyclerView}"
case "transition":
return "androidx.transition:transition:${androidXVersions.transition}"
case "vectordrawable":
return "androidx.vectordrawable:vectordrawable:${androidXVersions.vectorDrawable}"
case "recyclerViewSelection":
return "androidx.recyclerview:recyclerview-selection:${androidXVersions.recyclerViewSelection}"
case "viewpager2":
return "androidx.viewpager2:viewpager2:${androidXVersions.viewpager2}"
case "experimental":
return "androidx.annotation:annotation-experimental:${androidXVersions.experimental}"
default:
throw new IllegalArgumentException("No mapping exists for name: $name.")
}
}
/**
* Return the project dependency for the given project path.
*/
def fromPath(path) {
return getTransformedProjectPath(path)
}
def getArchivesBaseName(name) {
if (name == 'lib') {
return 'material'
}
def pathComponents = name.tokenize('-')
def knownComponents = ['lib', 'java', 'com', 'google', 'android', 'material']
def firstUnknownComponent = knownComponents.size();
for (def i = 0; i < knownComponents.size() && i < pathComponents.size(); i++) {
if (pathComponents[i] != knownComponents[i]) {
firstUnknownComponent = i;
break;
}
}
def result = 'material'
for (def i = firstUnknownComponent; i < pathComponents.size(); i++) {
result = result + '-' + pathComponents[i];
}
return result;
}
subprojects {
tasks.withType(Test) {
maxParallelForks = Runtime.runtime.availableProcessors().intdiv(2) ?: 1
}
}
subprojects {
version = rootProject.ext.mdcLibraryVersion
group = 'com.google.android.material'
// Disable strict dependency resolution version constraints for test projects
if (project.name.contains("tests")) {
project.configurations.all {
dependencyConstraints.configureEach { dependencyConstraint ->
dependencyConstraint.version { versionConstraint ->
versionConstraint.strictly("")
}
}
}
}
project.plugins.whenPluginAdded { plugin ->
def isAndroidLibrary = "com.android.build.gradle.LibraryPlugin".equals(plugin.class.name)
def isAndroidApp = "com.android.build.gradle.AppPlugin".equals(plugin.class.name)
def isAndroidTest = "com.android.build.gradle.TestPlugin".equals(plugin.class.name)
if (isAndroidLibrary || isAndroidApp) {
// Enable code coverage for debug builds only if we are not running inside the IDE,
// since enabling coverage reports breaks the method parameter resolution in the IDE
// debugger. Note that we avoid doing this for Android Test projects as it causes
// crashes on Dalvik ('Class ref in pre-verified class resolved to unexpected implementation')
project.android.buildTypes.debug.testCoverageEnabled = !hasProperty('android.injected.invoked.from.ide')
}
if (isAndroidLibrary || isAndroidApp || isAndroidTest) {
// Disable pre-dexing when gradle called with -PdisablePreDex;
project.android.dexOptions.preDexLibraries = rootProject.ext.preDexLibs
project.android {
compileSdkVersion rootProject.ext.compileSdkVersion
defaultConfig.minSdkVersion rootProject.ext.minSdkVersion
// This disables the builds tools automatic vector -> PNG generation
defaultConfig.generatedDensities = []
compileOptions.sourceCompatibility JavaVersion.VERSION_1_7
compileOptions.targetCompatibility JavaVersion.VERSION_1_7
aaptOptions.additionalParameters "--no-version-vectors"
android {
lintOptions {
check 'NewApi'
}
}
if (isAndroidLibrary) {
def JAVA_RESOURCES_TEMP_DIR = "$buildDir/javaResources"
task writeVersionFile() {
def versionFileDir = JAVA_RESOURCES_TEMP_DIR + '/META-INF'
def versionFileName = mdcLibraryPackage + '_' + getArchivesBaseName(project.name) + '.version'
new File(versionFileDir).mkdirs()
new File(versionFileDir + '/' + versionFileName).text = mdcLibraryVersion + "\n"
}
libraryVariants.all {
it.processJavaResourcesProvider.get().dependsOn(writeVersionFile)
}
project.android.sourceSets.main.resources.srcDir JAVA_RESOURCES_TEMP_DIR
}
}
if (isAndroidLibrary) {
project.afterEvaluate {
project.tasks.all({
if (it instanceof com.android.build.gradle.tasks.GenerateBuildConfig) {
// Disable generating BuildConfig.java
it.enabled = false
}
})
}
}
}
}
}