xref: /aosp_15_r20/external/accompanist/insets-ui/build.gradle.kts (revision fa44fe6ae8e729aa3cfe5c03eedbbf98fb44e2c6)
1 /*
2  * Copyright 2023 The Android Open Source Project
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      https://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 @file:Suppress("UnstableApiUsage")
17 
<lambda>null18 plugins {
19     id(libs.plugins.android.library.get().pluginId)
20     id(libs.plugins.android.kotlin.get().pluginId)
21     id(libs.plugins.jetbrains.dokka.get().pluginId)
22     id(libs.plugins.gradle.metalava.get().pluginId)
23     id(libs.plugins.vanniktech.maven.publish.get().pluginId)
24 }
25 
<lambda>null26 kotlin {
27     explicitApi()
28 }
29 
<lambda>null30 android {
31     namespace = "com.google.accompanist.insets.ui"
32 
33     compileSdk = 34
34 
35     defaultConfig {
36         minSdk = 21
37         // targetSdkVersion has no effect for libraries. This is only used for the test APK
38         targetSdk = 33
39         testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
40     }
41 
42     compileOptions {
43         sourceCompatibility = JavaVersion.VERSION_1_8
44         targetCompatibility = JavaVersion.VERSION_1_8
45     }
46 
47     buildFeatures {
48         buildConfig = false
49         compose = true
50     }
51 
52     composeOptions {
53         kotlinCompilerExtensionVersion = libs.versions.composeCompiler.get()
54     }
55 
56     lint {
57         textReport = true
58         textOutput = File("stdout")
59         // We run a full lint analysis as build part in CI, so skip vital checks for assemble tasks
60         checkReleaseBuilds = false
61         disable += setOf("GradleOverrides")
62     }
63 
64     packaging {
65         // Some of the META-INF files conflict with coroutines-test. Exclude them to enable
66         // our test APK to build (has no effect on our AARs)
67         resources {
68             excludes += listOf("/META-INF/AL2.0", "/META-INF/LGPL2.1")
69         }
70     }
71 
72     testOptions {
73         unitTests {
74             isIncludeAndroidResources = true
75         }
76         unitTests.all {
77             it.useJUnit {
78                 excludeCategories("com.google.accompanist.internal.test.IgnoreOnRobolectric")
79             }
80         }
81         animationsDisabled = true
82     }
83 
84     sourceSets {
85         named("test") {
86             java.srcDirs("src/sharedTest/kotlin")
87             res.srcDirs("src/sharedTest/res")
88         }
89         named("androidTest") {
90             java.srcDirs("src/sharedTest/kotlin")
91             res.srcDirs("src/sharedTest/res")
92         }
93     }
94 }
95 
<lambda>null96 metalava {
97     sourcePaths.setFrom("src/main")
98     filename.set("api/current.api")
99     reportLintsAsErrors.set(true)
100 }
101 
<lambda>null102 dependencies {
103     api(libs.compose.material.material)
104 
105     implementation(libs.kotlin.coroutines.android)
106 
107     // ======================
108     // Test dependencies
109     // ======================
110 
111     androidTestImplementation(project(":internal-testutils"))
112     testImplementation(project(":internal-testutils"))
113 
114     androidTestImplementation(libs.junit)
115     testImplementation(libs.junit)
116 
117     androidTestImplementation(libs.truth)
118     testImplementation(libs.truth)
119 
120     androidTestImplementation(libs.compose.ui.test.junit4)
121     testImplementation(libs.compose.ui.test.junit4)
122 
123     androidTestImplementation(libs.compose.ui.test.manifest)
124     testImplementation(libs.compose.ui.test.manifest)
125 
126     androidTestImplementation(libs.androidx.test.runner)
127     testImplementation(libs.androidx.test.runner)
128 
129     testImplementation(libs.robolectric)
130 }
131