1/* 2 * Copyright 2019 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 26 implementation(libs.kotlinStdlib) 27 28 implementation(project(":compose:foundation:foundation")) 29 implementation(project(":compose:foundation:foundation-layout")) 30 implementation(project(":compose:foundation:foundation-layout:foundation-layout-samples")) 31 implementation(project(":compose:material:material")) 32 implementation("androidx.compose.material:material-icons-core:1.6.7") 33 implementation(project(":compose:integration-tests:demos:common")) 34 implementation(project(":compose:runtime:runtime")) 35 implementation(project(":compose:ui:ui")) 36 implementation(project(":compose:ui:ui-text")) 37} 38 39android { 40 compileSdk = 35 41 namespace = "androidx.compose.foundation.layout.demos" 42} 43