blob: af8e9946f0798d0a023b6446f53d40cde7e3c463 [file] [log] [blame]
/*
* Copyright (C) 2024 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
*
* http://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("AndroidXPlugin")
id("AndroidXComposePlugin")
id("org.jetbrains.kotlin.android")
}
android {
namespace = "androidx.xr.compose.integration.common"
compileSdk = 35
}
dependencies {
implementation("androidx.core:core-ktx:1.15.0")
implementation("androidx.lifecycle:lifecycle-runtime-ktx:2.9.0")
implementation("androidx.activity:activity-compose:1.10.0")
implementation("androidx.compose.ui:ui:1.7.0")
implementation("androidx.compose.ui:ui-tooling-preview:1.7.0")
implementation("androidx.compose.material:material-icons-core:1.6.7")
implementation("androidx.compose.material3:material3:1.3.0")
}