blob: 6039384035a94230a25c99a5ce863cb68567844b [file] [log] [blame]
/*
* Copyright 2025 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.
*/
import androidx.build.SoftwareType
plugins {
id("AndroidXPlugin")
id("com.android.library")
id("AndroidXComposePlugin")
}
androidx {
name = "Remote Compose Player Test Utils"
type = SoftwareType.INTERNAL_TEST_LIBRARY
inceptionYear = "2025"
description = "Remote Compose Player internal test utils"
}
android {
namespace = "androidx.compose.remote.player.compose.test.utils"
compileSdk = 35
defaultConfig {
minSdk = 26
}
}
dependencies {
implementation(libs.junit)
implementation(libs.testRunner)
implementation("androidx.compose.runtime:runtime:1.8.3")
implementation("androidx.compose.foundation:foundation:1.8.3")
implementation("androidx.compose.ui:ui:1.8.3")
implementation(project(":compose:test-utils"))
implementation(project(":compose:remote:remote-core"))
implementation(project(":compose:remote:remote-creation"))
implementation(project(":compose:remote:remote-creation-core"))
implementation(project(":compose:remote:remote-creation-compose"))
implementation(project(":compose:remote:remote-player-core"))
implementation(project(":compose:remote:remote-player-view"))
implementation(project(":compose:remote:remote-player-compose"))
implementation(project(":compose:ui:ui-test"))
implementation(project(":test:screenshot:screenshot"))
}