xref: /aosp_15_r20/external/accompanist/settings.gradle.kts (revision fa44fe6ae8e729aa3cfe5c03eedbbf98fb44e2c6)
1*fa44fe6aSInna Palant /*
2*fa44fe6aSInna Palant  * Copyright 2023 The Android Open Source Project
3*fa44fe6aSInna Palant  *
4*fa44fe6aSInna Palant  * Licensed under the Apache License, Version 2.0 (the "License");
5*fa44fe6aSInna Palant  * you may not use this file except in compliance with the License.
6*fa44fe6aSInna Palant  * You may obtain a copy of the License at
7*fa44fe6aSInna Palant  *
8*fa44fe6aSInna Palant  *      https://www.apache.org/licenses/LICENSE-2.0
9*fa44fe6aSInna Palant  *
10*fa44fe6aSInna Palant  * Unless required by applicable law or agreed to in writing, software
11*fa44fe6aSInna Palant  * distributed under the License is distributed on an "AS IS" BASIS,
12*fa44fe6aSInna Palant  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13*fa44fe6aSInna Palant  * See the License for the specific language governing permissions and
14*fa44fe6aSInna Palant  * limitations under the License.
15*fa44fe6aSInna Palant  */
16*fa44fe6aSInna Palant 
<lambda>null17*fa44fe6aSInna Palant plugins {
18*fa44fe6aSInna Palant     id("com.gradle.enterprise").version("3.10.3")
19*fa44fe6aSInna Palant }
20*fa44fe6aSInna Palant 
<lambda>null21*fa44fe6aSInna Palant gradleEnterprise {
22*fa44fe6aSInna Palant     buildScan {
23*fa44fe6aSInna Palant         termsOfServiceUrl = "https://gradle.com/terms-of-service"
24*fa44fe6aSInna Palant         termsOfServiceAgree = "yes"
25*fa44fe6aSInna Palant     }
26*fa44fe6aSInna Palant }
27*fa44fe6aSInna Palant 
28*fa44fe6aSInna Palant include(":adaptive")
29*fa44fe6aSInna Palant include(":internal-testutils")
30*fa44fe6aSInna Palant include(":insets-ui")
31*fa44fe6aSInna Palant include(":appcompat-theme")
32*fa44fe6aSInna Palant include(":drawablepainter")
33*fa44fe6aSInna Palant include(":navigation-animation")
34*fa44fe6aSInna Palant include(":navigation-material")
35*fa44fe6aSInna Palant include(":pager")
36*fa44fe6aSInna Palant include(":pager-indicators")
37*fa44fe6aSInna Palant include(":permissions")
38*fa44fe6aSInna Palant include(":permissions-lint")
39*fa44fe6aSInna Palant include(":placeholder")
40*fa44fe6aSInna Palant include(":placeholder-material")
41*fa44fe6aSInna Palant include(":placeholder-material3")
42*fa44fe6aSInna Palant include(":flowlayout")
43*fa44fe6aSInna Palant include(":systemuicontroller")
44*fa44fe6aSInna Palant include(":swiperefresh")
45*fa44fe6aSInna Palant include(":sample")
46*fa44fe6aSInna Palant include(":testharness")
47*fa44fe6aSInna Palant include(":themeadapter-core")
48*fa44fe6aSInna Palant include(":themeadapter-appcompat")
49*fa44fe6aSInna Palant include(":themeadapter-material")
50*fa44fe6aSInna Palant include(":themeadapter-material3")
51*fa44fe6aSInna Palant include(":web")
52*fa44fe6aSInna Palant 
53*fa44fe6aSInna Palant rootProject.name = "accompanist"
54