/
androidos
/
androidify
Обзор
Документация
Войти
/
androidos
/
androidify
Код
Пакеты
0
Релизы
0
Аналитика
main
data/build.gradle.kts
56 строк
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.androidLibrary) alias(libs.plugins.kotlin.ksp) alias(libs.plugins.hilt) } android { namespace = "com.android.developers.androidify.data" } // Explicitly disable the connectedAndroidTest task for this module androidComponents { beforeVariants { variant -> variant.enableAndroidTest = false } } dependencies { implementation(projects.core.network) implementation(projects.core.util) implementation(libs.androidx.app.startup) implementation(libs.kotlinx.serialization.json) implementation(libs.retrofit) implementation(libs.timber) implementation(libs.converter.gson) implementation(libs.logging.interceptor) implementation(libs.hilt.android) implementation(libs.androidx.hilt.navigation.compose) implementation(libs.okhttp) implementation(libs.retrofit.kotlin.serialization) implementation(libs.genai.prompt) ksp(libs.hilt.compiler) testImplementation(libs.junit) testImplementation(libs.kotlinx.coroutines.test) testImplementation(libs.hilt.android.testing) testImplementation(libs.robolectric) testImplementation(projects.core.testing) testImplementation(kotlin("test")) }