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 */
8import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
9
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
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 */
33import androidx.build.SoftwareType
34
35plugins {
36    id("AndroidXPlugin")
37    id("kotlin")
38}
39
40dependencies {
41    implementation(libs.kotlinStdlib)
42    implementation(libs.kotlinCoroutinesAndroid)
43
44    testImplementation(libs.junit)
45    testImplementation(libs.truth)
46}
47
48androidx {
49    type = SoftwareType.INTERNAL_TEST_LIBRARY
50}
51