Jelle Fresen | f517c09 | 2021-02-26 10:03:45 +0000 | [diff] [blame] | 1 | /* |
| 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 Song | ee0da74 | 2024-01-03 14:08:46 -0800 | [diff] [blame] | 17 | /** |
| 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-Freilich | e6ad4aa | 2021-03-11 18:15:47 +0000 | [diff] [blame] | 24 | import androidx.build.LibraryType |
Adam Powell | 289a76f | 2022-06-01 14:53:23 -0700 | [diff] [blame] | 25 | import org.jetbrains.kotlin.gradle.tasks.KotlinCompile |
Jelle Fresen | f517c09 | 2021-02-26 10:03:45 +0000 | [diff] [blame] | 26 | |
| 27 | plugins { |
| 28 | id("AndroidXPlugin") |
| 29 | id("com.android.library") |
Louis Pullen-Freilich | c8a26b8 | 2021-06-03 18:11:39 +0100 | [diff] [blame] | 30 | id("AndroidXComposePlugin") |
Jelle Fresen | f517c09 | 2021-02-26 10:03:45 +0000 | [diff] [blame] | 31 | } |
| 32 | |
| 33 | dependencies { |
Nick Anthony | 97bdd18 | 2022-10-04 14:26:07 -0400 | [diff] [blame] | 34 | api("androidx.activity:activity:1.2.1") |
Levi Albuquerque | 2e59d14 | 2022-05-18 18:22:27 +0100 | [diff] [blame] | 35 | lintPublish(project(":compose:ui:ui-test-manifest-lint")) |
Jelle Fresen | f517c09 | 2021-02-26 10:03:45 +0000 | [diff] [blame] | 36 | } |
| 37 | |
| 38 | androidx { |
| 39 | name = "Compose Testing manifest dependency" |
omarismail | 6700b61 | 2024-02-19 14:28:20 +0000 | [diff] [blame] | 40 | type = LibraryType.PUBLISHED_KOTLIN_ONLY_TEST_LIBRARY |
Jelle Fresen | f517c09 | 2021-02-26 10:03:45 +0000 | [diff] [blame] | 41 | 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 McClellan | f37eb98 | 2024-02-02 10:43:51 -0500 | [diff] [blame] | 43 | doNotDocumentReason = "No public API" |
Jelle Fresen | f517c09 | 2021-02-26 10:03:45 +0000 | [diff] [blame] | 44 | } |
Aurimas Liutikas | dcfa035 | 2022-03-14 16:05:33 -0700 | [diff] [blame] | 45 | |
| 46 | android { |
Aurimas Liutikas | 7795282 | 2024-12-04 18:00:17 -0800 | [diff] [blame] | 47 | namespace = "androidx.compose.ui.test.manifest" |
Aurimas Liutikas | dcfa035 | 2022-03-14 16:05:33 -0700 | [diff] [blame] | 48 | } |