blob: a49f6d272a6efd82549f81e6254dbdd1e102a48c [file] [log] [blame]
Tiem Songee0da742024-01-03 14:08:46 -08001/**
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 Fok583863d2021-08-18 18:28:43 -07008import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
9
Dustin Lame683c812019-05-13 10:33:19 -070010/*
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 Songee0da742024-01-03 14:08:46 -080026/**
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 Fresen4a13c562021-11-26 16:50:44 +000033import androidx.build.LibraryType
34
Dustin Lame683c812019-05-13 10:33:19 -070035plugins {
36 id("AndroidXPlugin")
37 id("kotlin")
38}
39
40dependencies {
Aurimas Liutikas00442962021-06-01 17:18:09 -070041 implementation(libs.kotlinStdlib)
Clara Fok583863d2021-08-18 18:28:43 -070042 implementation(libs.kotlinCoroutinesAndroid)
Kuan-Ying Choufa34a942021-12-20 18:34:56 +000043
44 testImplementation(libs.junit)
45 testImplementation(libs.truth)
Clara Fok583863d2021-08-18 18:28:43 -070046}
47
Jelle Fresen4a13c562021-11-26 16:50:44 +000048androidx {
49 type = LibraryType.INTERNAL_TEST_LIBRARY
50}