/
androidos
/
androidify
Обзор
Документация
Войти
/
androidos
/
androidify
Код
Пакеты
0
Релизы
0
Аналитика
main
core/testing/build.gradle.kts
49 строк
2 KB
Rebecca Franks
Merge branch 'main' into build-plugin
17 ноя 2025, 17:37
Не верифицирован
17 ноя 2025, 17:37
3febb05
Код
Авторство
О чём код?
/* * 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 * * https://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 { alias(libs.plugins.androidify.androidComposeLibrary) alias(libs.plugins.kotlin.ksp) alias(libs.plugins.hilt) } android { namespace = "com.android.developers.androidify.testing" } // Explicitly disable the connectedAndroidTest task for this module androidComponents { beforeVariants { variant -> variant.enableAndroidTest = false } } dependencies { api(libs.kotlinx.coroutines.test) implementation(platform(libs.androidx.compose.bom)) implementation(libs.androidx.ui) implementation(libs.androidx.ui.graphics) implementation(libs.androidx.ui.tooling.preview) implementation(libs.hilt.android) implementation(libs.androidx.runner) implementation(libs.hilt.android.testing) implementation(projects.data) implementation(projects.core.network) implementation(projects.core.util) implementation(projects.feature.results) implementation(projects.watchface) implementation(projects.wear.common) ksp(libs.hilt.compiler) }