blob: 3405de2b76bc183c260f5c652c44666d394b3a42 [file] [log] [blame]
Jelle Fresenf517c092021-02-26 10:03:45 +00001/*
2 * Copyright 2021 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
Tiem Songee0da742024-01-03 14:08:46 -080017/**
18 * This file was created using the `create_project.py` script located in the
19 * `<AndroidX root>/development/project-creator` directory.
20 *
21 * Please use that script when creating a new project, rather than copying an existing project and
22 * modifying its settings.
23 */
Louis Pullen-Freiliche6ad4aa2021-03-11 18:15:47 +000024import androidx.build.LibraryType
Adam Powell289a76f2022-06-01 14:53:23 -070025import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
Jelle Fresenf517c092021-02-26 10:03:45 +000026
27plugins {
28 id("AndroidXPlugin")
29 id("com.android.library")
Louis Pullen-Freilichc8a26b82021-06-03 18:11:39 +010030 id("AndroidXComposePlugin")
Jelle Fresenf517c092021-02-26 10:03:45 +000031}
32
33dependencies {
Nick Anthony97bdd182022-10-04 14:26:07 -040034 api("androidx.activity:activity:1.2.1")
Levi Albuquerque2e59d142022-05-18 18:22:27 +010035 lintPublish(project(":compose:ui:ui-test-manifest-lint"))
Jelle Fresenf517c092021-02-26 10:03:45 +000036}
37
38androidx {
39 name = "Compose Testing manifest dependency"
omarismail6700b612024-02-19 14:28:20 +000040 type = LibraryType.PUBLISHED_KOTLIN_ONLY_TEST_LIBRARY
Jelle Fresenf517c092021-02-26 10:03:45 +000041 inceptionYear = "2021"
42 description = "Compose testing library that should be added as a debugImplementation dependency to add properties to the debug manifest necessary for testing an application"
Julia McClellanf37eb982024-02-02 10:43:51 -050043 doNotDocumentReason = "No public API"
Jelle Fresenf517c092021-02-26 10:03:45 +000044}
Aurimas Liutikasdcfa0352022-03-14 16:05:33 -070045
46android {
Aurimas Liutikas77952822024-12-04 18:00:17 -080047 namespace = "androidx.compose.ui.test.manifest"
Aurimas Liutikasdcfa0352022-03-14 16:05:33 -070048}