1/*
2 * Copyright 2022 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 *      http://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
17plugins {
18    id("AndroidXPlugin")
19    id("com.android.library")
20    id("AndroidXComposePlugin")
21    id("org.jetbrains.kotlin.android")
22}
23
24dependencies {
25    implementation(project(":constraintlayout:constraintlayout-compose"))
26
27    implementation("androidx.activity:activity-compose:1.10.1")
28    implementation(project(":compose:foundation:foundation-layout"))
29    implementation(project(":compose:runtime:runtime"))
30    implementation(project(":compose:ui:ui"))
31    implementation(project(":compose:animation:animation"))
32    implementation(project(":compose:material:material"))
33    implementation("androidx.compose.material:material-icons-core:1.6.7")
34    implementation(project(":compose:ui:ui-tooling-preview"))
35    implementation(project(":compose:ui:ui-tooling"))
36}
37
38android {
39    compileSdk = 35
40    namespace = "androidx.constraintlayout.compose.demos"
41}
42
43