Tiem Song | ee0da74 | 2024-01-03 14:08:46 -0800 | [diff] [blame] | 1 | /** |
| 2 | * This file was created using the `create_project.py` script located in the |
| 3 | * `<AndroidX root>/development/project-creator` directory. |
| 4 | * |
| 5 | * Please use that script when creating a new project, rather than copying an existing project and |
| 6 | * modifying its settings. |
| 7 | */ |
Clara Fok | 583863d | 2021-08-18 18:28:43 -0700 | [diff] [blame] | 8 | import org.jetbrains.kotlin.gradle.tasks.KotlinCompile |
| 9 | |
Dustin Lam | e683c81 | 2019-05-13 10:33:19 -0700 | [diff] [blame] | 10 | /* |
| 11 | * Copyright 2018 The Android Open Source Project |
| 12 | * |
| 13 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 14 | * you may not use this file except in compliance with the License. |
| 15 | * You may obtain a copy of the License at |
| 16 | * |
| 17 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 18 | * |
| 19 | * Unless required by applicable law or agreed to in writing, software |
| 20 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 21 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 22 | * See the License for the specific language governing permissions and |
| 23 | * limitations under the License. |
| 24 | */ |
| 25 | |
Tiem Song | ee0da74 | 2024-01-03 14:08:46 -0800 | [diff] [blame] | 26 | /** |
| 27 | * This file was created using the `create_project.py` script located in the |
| 28 | * `<AndroidX root>/development/project-creator` directory. |
| 29 | * |
| 30 | * Please use that script when creating a new project, rather than copying an existing project and |
| 31 | * modifying its settings. |
| 32 | */ |
Jelle Fresen | 4a13c56 | 2021-11-26 16:50:44 +0000 | [diff] [blame] | 33 | import androidx.build.LibraryType |
| 34 | |
Dustin Lam | e683c81 | 2019-05-13 10:33:19 -0700 | [diff] [blame] | 35 | plugins { |
| 36 | id("AndroidXPlugin") |
| 37 | id("kotlin") |
| 38 | } |
| 39 | |
| 40 | dependencies { |
Aurimas Liutikas | 0044296 | 2021-06-01 17:18:09 -0700 | [diff] [blame] | 41 | implementation(libs.kotlinStdlib) |
Clara Fok | 583863d | 2021-08-18 18:28:43 -0700 | [diff] [blame] | 42 | implementation(libs.kotlinCoroutinesAndroid) |
Kuan-Ying Chou | fa34a94 | 2021-12-20 18:34:56 +0000 | [diff] [blame] | 43 | |
| 44 | testImplementation(libs.junit) |
| 45 | testImplementation(libs.truth) |
Clara Fok | 583863d | 2021-08-18 18:28:43 -0700 | [diff] [blame] | 46 | } |
| 47 | |
Jelle Fresen | 4a13c56 | 2021-11-26 16:50:44 +0000 | [diff] [blame] | 48 | androidx { |
| 49 | type = LibraryType.INTERNAL_TEST_LIBRARY |
| 50 | } |