forked from google/horologist
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
160 lines (137 loc) · 5.34 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
/*
* Copyright 2022 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
plugins {
id 'com.android.library'
id 'kotlin-android'
id 'org.jetbrains.dokka'
id 'app.cash.paparazzi'
}
android {
compileSdkVersion 32
defaultConfig {
minSdk 26
targetSdk 30
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
buildFeatures {
buildConfig false
compose true
}
kotlinOptions {
jvmTarget = '1.8'
freeCompilerArgs += "-opt-in=kotlinx.coroutines.ExperimentalCoroutinesApi"
freeCompilerArgs += "-opt-in=com.google.accompanist.pager.ExperimentalPagerApi"
freeCompilerArgs += "-opt-in=com.google.android.horologist.media.ExperimentalHorologistMediaApi"
freeCompilerArgs += "-opt-in=com.google.android.horologist.audio.ExperimentalHorologistAudioApi"
freeCompilerArgs += "-opt-in=com.google.android.horologist.audio.ui.ExperimentalHorologistAudioUiApi"
freeCompilerArgs += "-opt-in=com.google.android.horologist.compose.navscaffold.ExperimentalHorologistComposeLayoutApi"
freeCompilerArgs += "-opt-in=com.google.android.horologist.composables.ExperimentalHorologistComposablesApi"
freeCompilerArgs += "-opt-in=com.google.android.horologist.tiles.ExperimentalHorologistTilesApi"
}
composeOptions {
kotlinCompilerExtensionVersion libs.versions.compose.compiler.get()
}
lintOptions {
textReport true
textOutput 'stdout'
// We run a full lint analysis as build part in CI, so skip vital checks for assemble tasks
checkReleaseBuilds false
}
packagingOptions {
// Some of the META-INF files conflict with coroutines-test. Exclude them to enable
// our test APK to build (has no effect on our AARs)
excludes += "/META-INF/AL2.0"
excludes += "/META-INF/LGPL2.1"
}
sourceSets {
main {
assets.srcDirs = ['src/main/assets']
}
}
testOptions {
unitTests {
includeAndroidResources = true
}
animationsDisabled true
}
}
project.tasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile.class).configureEach { task ->
// Workaround for https://youtrack.jetbrains.com/issue/KT-37652
if (!task.name.endsWith("TestKotlin") && !task.name.startsWith("compileDebug")) {
task.kotlinOptions.freeCompilerArgs.add("-Xexplicit-api=strict")
}
}
apply plugin: 'me.tylerbwong.gradle.metalava'
metalava {
sourcePaths = ["src/main"]
filename = "api/current.api"
reportLintsAsErrors = true
}
dependencies {
api projects.media
api projects.tiles
api projects.composables
implementation projects.audio
implementation projects.audioUi
implementation projects.composeLayout
implementation libs.kotlin.stdlib
implementation libs.androidx.wear
implementation libs.androidx.lifecycle.runtime
implementation libs.androidx.lifecycle.viewmodelktx
implementation libs.wearcompose.material
api libs.wearcompose.foundation
implementation libs.compose.ui.tooling
implementation libs.compose.material.iconscore
implementation libs.compose.material.iconsext
implementation libs.androidx.lifecycle.viewmodel.compose
implementation libs.coil
implementation libs.lottie.compose
implementation libs.androidx.palette.ktx
implementation projects.tiles
implementation projects.composeTools
implementation libs.androidx.complications.datasource.ktx
implementation libs.androidx.wear.tiles
implementation libs.androidx.wear.tiles.material
implementation libs.compose.ui.tooling
implementation libs.compose.ui.util
api libs.wearcompose.material
debugImplementation projects.composeTools
debugImplementation libs.compose.ui.toolingpreview
debugImplementation libs.compose.ui.test.manifest
debugImplementation libs.compose.ui.toolingpreview
debugImplementation projects.audioUi
debugImplementation projects.composeTools
testImplementation libs.junit
testImplementation libs.androidx.test.ext.ktx
testImplementation libs.kotlinx.coroutines.test
testImplementation libs.truth
testImplementation libs.robolectric
testImplementation projects.audio
testImplementation projects.audioUi
testImplementation projects.paparazzi
testImplementation libs.paparazzi
androidTestImplementation libs.compose.ui.test.junit4
androidTestImplementation libs.truth
androidTestImplementation libs.espresso.core
androidTestImplementation libs.junit
androidTestImplementation libs.androidx.test.ext
androidTestImplementation libs.androidx.test.ext.ktx
}
apply plugin: "com.vanniktech.maven.publish"